Fix paths for CI binary packaging after upgrade
This commit is contained in:
parent
88e441453b
commit
8a1b24c7af
|
@ -43,7 +43,7 @@ jobs:
|
||||||
path: source/
|
path: source/
|
||||||
|
|
||||||
build_source:
|
build_source:
|
||||||
name: Build Source Code
|
name: Build
|
||||||
needs: package_source
|
needs: package_source
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -80,13 +80,13 @@ jobs:
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
||||||
- name: Work around GitHub permissions bug
|
- name: Work around GitHub permissions bug
|
||||||
run: chmod +x bin/*/shellcheck*
|
run: chmod +x *.bin/*/shellcheck*
|
||||||
|
|
||||||
- name: Package binaries
|
- name: Package binaries
|
||||||
run: |
|
run: |
|
||||||
export TAGS="$(cat source/tags)"
|
export TAGS="$(cat source/tags)"
|
||||||
mkdir -p deploy
|
mkdir -p deploy
|
||||||
cp -r bin/* deploy
|
cp -r *.bin/* deploy
|
||||||
cd deploy
|
cd deploy
|
||||||
../.prepare_deploy
|
../.prepare_deploy
|
||||||
rm -rf */ README* LICENSE*
|
rm -rf */ README* LICENSE*
|
||||||
|
|
Loading…
Reference in New Issue