Commit 44d374f 1 parent b37af51 commit 44d374f Copy full SHA for 44d374f
File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,16 @@ jobs:
26
26
- name : Magic Nix Cache
27
27
uses : DeterminateSystems/magic-nix-cache-action@v2
28
28
- name : Build ${{ matrix.host }} binary
29
- run : ' nix build -L .#${{matrix.host}}.release.SyncDisBoi'
29
+ run : |
30
+ nix build -L .#${{matrix.host}}.release.SyncDisBoi
31
+ mkdir artifacts/
32
+ cp result/bin/* artifacts
33
+ cd artifacts
34
+ ls | xargs -i mv {} ${{matrix.host}}-{}
30
35
- uses : actions/upload-artifact@v4
31
36
with :
32
37
name : " ${{ matrix.host }}-sync_dis_boi"
33
- path : " result/bin /*"
38
+ path : " artifacts /*"
34
39
strategy :
35
40
matrix :
36
41
host :
42
47
runs-on : ubuntu-latest
43
48
if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
44
49
steps :
45
- - uses : actions/checkout@v4
46
50
- uses : actions/download-artifact@v4
47
51
with :
48
52
path : " artifacts"
You can’t perform that action at this time.
0 commit comments