Skip to content

Commit

Permalink
Fix paths for CI binary packaging after upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
koalaman committed Sep 1, 2024
1 parent 88e4414 commit 8a1b24c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
path: source/

build_source:
name: Build Source Code
name: Build
needs: package_source
strategy:
matrix:
Expand Down Expand Up @@ -80,13 +80,13 @@ jobs:
uses: actions/download-artifact@v4

- name: Work around GitHub permissions bug
run: chmod +x bin/*/shellcheck*
run: chmod +x *.bin/*/shellcheck*

- name: Package binaries
run: |
export TAGS="$(cat source/tags)"
mkdir -p deploy
cp -r bin/* deploy
cp -r *.bin/* deploy
cd deploy
../.prepare_deploy
rm -rf */ README* LICENSE*
Expand Down

0 comments on commit 8a1b24c

Please sign in to comment.