We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0880f02 commit 38e9eedCopy full SHA for 38e9eed
.github/workflows/build-binary-package.yml
@@ -29,13 +29,15 @@ jobs:
29
with:
30
go-version: 1.20.7
31
32
- - name: Build all versions
+ - name: Build all platforms
33
run: |
34
- make vendor platform-all
+ # build platform-all first so the .xz vendor file is not removed
35
+ make platform-all vendor
36
37
- name: Upload to release
38
env:
39
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
41
tag_name="${GITHUB_REF##*/}"
- 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