Update creation of source code archive
Some checks failed
Build / build-gentoo (push) Successful in 1m5s
Build / get-source-code (push) Successful in 2m52s
Build / build-appimage (push) Successful in 1m25s
Build / build-android (push) Failing after 2m47s
Build / build-windows (push) Failing after 29s

This commit is contained in:
Zachary Hall 2024-10-20 15:43:24 -07:00
parent abf5d9d0e3
commit ab7ee688d4

View file

@ -17,7 +17,7 @@ jobs:
- name: Install ZSTD compressor
run: apt-get update && apt-get install -y zstd
- name: Create archive
run: tar -cf source.tar . && zstd -19 source.tar
run: rm source.tar.zst -f; tar --exclude-vcs -c --to-stdout --exclude=source.tar.zst ./* ./.* | zstd -19 -T0 -o source.tar.zst
- name: Upload source code
uses: actions/upload-artifact@v3
with:
@ -29,6 +29,7 @@ jobs:
if-no-files-found: error
build-appimage:
runs-on: ubuntu-latest
needs: get-source-code
steps:
- name: Download repository code
uses: actions/download-artifact@v3
@ -59,6 +60,7 @@ jobs:
run: emerge -v media-sound/looper
build-android:
runs-on: ubuntu-latest
needs: get-source-code
steps:
- name: Download repository code
uses: actions/download-artifact@v3
@ -98,6 +100,7 @@ jobs:
path: ${{ steps.debugApk.outputs.apkFile }}
build-windows:
runs-on: ubuntu-latest
needs: get-source-code
steps:
- name: Download repository code
uses: actions/download-artifact@v3