Skip to content

Commit

Permalink
upload .xz vendor file to release
Browse files Browse the repository at this point in the history
  • Loading branch information
mmetc committed Aug 24, 2023
1 parent c421287 commit 9cf192e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-binary-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ jobs:
with:
go-version: 1.20.7

- name: Build all versions
- name: Build all platforms
run: |
make vendor platform-all
# build platform-all first so the .xz vendor file is not removed
make platform-all vendor
- name: Upload to release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
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"
# this will find the $PROGRAM_NAME-vendor.tar.xz file as well
hub release edit $(find . -name "$PROGRAM_NAME*" -maxdepth 1 -printf "-a %p ") -a vendor.tgz -m "" "$tag_name"

0 comments on commit 9cf192e

Please sign in to comment.