Update creation of source code archive
Some checks failed
Some checks failed
This commit is contained in:
parent
abf5d9d0e3
commit
ab7ee688d4
1 changed files with 4 additions and 1 deletions
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: Install ZSTD compressor
|
- name: Install ZSTD compressor
|
||||||
run: apt-get update && apt-get install -y zstd
|
run: apt-get update && apt-get install -y zstd
|
||||||
- name: Create archive
|
- 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
|
- name: Upload source code
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
@ -29,6 +29,7 @@ jobs:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
build-appimage:
|
build-appimage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: get-source-code
|
||||||
steps:
|
steps:
|
||||||
- name: Download repository code
|
- name: Download repository code
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
@ -59,6 +60,7 @@ jobs:
|
||||||
run: emerge -v media-sound/looper
|
run: emerge -v media-sound/looper
|
||||||
build-android:
|
build-android:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: get-source-code
|
||||||
steps:
|
steps:
|
||||||
- name: Download repository code
|
- name: Download repository code
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
@ -98,6 +100,7 @@ jobs:
|
||||||
path: ${{ steps.debugApk.outputs.apkFile }}
|
path: ${{ steps.debugApk.outputs.apkFile }}
|
||||||
build-windows:
|
build-windows:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: get-source-code
|
||||||
steps:
|
steps:
|
||||||
- name: Download repository code
|
- name: Download repository code
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
|
Loading…
Reference in a new issue