Skip to content

Commit 2e4c18b

Browse files
committed
ci: fix artifact sourcing
1 parent 42f63e5 commit 2e4c18b

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,20 @@ jobs:
1515
steps:
1616
- name: Download artifacts from 'build binaries' workflow
1717
uses: actions/download-artifact@v4
18-
with:
18+
with:
1919
path: zk
20-
pattern: zk-${{ github.ref_name }}-*
20+
merge-multiple: true
2121
- name: Create GitHub Release
2222
uses: softprops/action-gh-release@v2
2323
with:
24-
files: zk*
24+
files: |
25+
zk-${{ github.ref_name }}-linux-amd64.tar.gz
26+
zk-${{ github.ref_name }}-linux-i386.tar.gz
27+
zk-${{ github.ref_name }}-linux-arm64.tar.gz
28+
zk-${{ github.ref_name }}-alpine-amd64.tar.gz
29+
zk-${{ github.ref_name }}-alpine-i386.tar.gz
30+
zk-${{ github.ref_name }}-macos-x86_64.tar.gz
31+
zk-${{ github.ref_name }}-macos_arm64.tar.gz
32+
zk-${{ github.ref_name }}-windows_x64_86.tar.gz
2533
env:
2634
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)