File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,12 @@ jobs:
26
26
name : Build
27
27
run : |
28
28
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build
29
+ ls -al bin/
29
30
-
30
31
name : Upload artifacts
31
32
uses : actions/upload-artifact@v4
32
33
with :
33
- name : compose-spec
34
+ name : compose-spec-${{ matrix.os }}-${{ matrix.arch }}
34
35
path : ./bin/*
35
36
if-no-files-found : error
36
37
@@ -43,18 +44,18 @@ jobs:
43
44
steps :
44
45
-
45
46
name : Checkout
46
- uses : actions/checkout@v4
47
+ uses : actions/checkout@v3
47
48
-
48
49
name : Download artifacts
49
50
uses : actions/download-artifact@v4
50
51
with :
51
- name : compose-spec
52
- path : bin/release
52
+ path : bin/
53
+ merge-multiple : true
53
54
-
54
55
name : GitHub Release
55
56
uses : ncipollo/release-action@v1
56
57
with :
57
- artifacts : bin/release/ *
58
+ artifacts : bin/*
58
59
generateReleaseNotes : true
59
60
draft : true
60
61
token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments