diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-31 19:11:20 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-31 19:11:20 +1100 |
commit | d922be661241b1d8140ddc9d436fd188d5e514ce (patch) | |
tree | 5e9b8f7e48b405f511418cac6199492a7fa94455 /.github | |
parent | da76c1d95d7daaa5290728ef6834baf2185bb03c (diff) |
decouple raw artifacts from assemble script
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ffe0aa..f263aa1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -145,9 +145,9 @@ jobs: configurePreset: 'linux-release' buildPreset: 'linux-release' - - name: Assemble Files + - name: Prepare Artifacts working-directory: ${{ github.workspace }} - run: scripts/ci/linux/assemble.sh + run: tar -cvf dist.tar dist - name: Upload Artifacts uses: actions/upload-artifact@v4 @@ -161,6 +161,10 @@ jobs: cmakeListsTxtPath: '${{ github.workspace }}/source/CMakeLists.txt' testPreset: 'linux-release' + - name: Assemble Files + working-directory: ${{ github.workspace }} + run: scripts/ci/linux/assemble.sh + - name: Upload Client Files uses: actions/upload-artifact@v4 with: |