Skip to content

Commit 38e9eed

Browse files
authored
upload .xz vendor file to release
1 parent 0880f02 commit 38e9eed

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build-binary-package.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,15 @@ jobs:
2929
with:
3030
go-version: 1.20.7
3131

32-
- name: Build all versions
32+
- name: Build all platforms
3333
run: |
34-
make vendor platform-all
34+
# build platform-all first so the .xz vendor file is not removed
35+
make platform-all vendor
3536
3637
- name: Upload to release
3738
env:
3839
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3940
run: |
4041
tag_name="${GITHUB_REF##*/}"
41-
hub release edit $(find . -name "$PROGRAM_NAME*" -maxdepth 1 -printf "-a %p ") -a vendor.tgz -a *-vendor.tar.xz -m "" "$tag_name"
42+
# this will find the $PROGRAM_NAME-vendor.tar.xz file as well
43+
hub release edit $(find . -name "$PROGRAM_NAME*" -maxdepth 1 -printf "-a %p ") -a vendor.tgz -m "" "$tag_name"

0 commit comments

Comments
 (0)