diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-17 22:30:29 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-17 22:30:29 +1100 |
commit | 4fb380411f5612e842ac259a848d1ff47b6a74a3 (patch) | |
tree | a306c4fc917dd8343ad5177e1a80f586534f8d1a /.github | |
parent | faae6e715abd785393e7c2b5ed091236dcb2d637 (diff) |
Use Linux assembly script
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_linux.yml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index ca51455..830212e 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -49,8 +49,24 @@ jobs: buildPreset: 'linux-release' testPreset: 'linux-release' + - name: Assemble Files + working-directory: ${{ github.workspace }} + run: scripts/ci/linux/assemble.sh + - name: Upload Artifacts uses: actions/upload-artifact@v4 with: - name: OpenStarbound-Dev-Linux-x86_64 - path: dist/* + name: OpenStarbound-Linux + path: dist.tar + + - name: Upload Client Files + uses: actions/upload-artifact@v4 + with: + name: OpenStarbound-Linux-Client + path: client.tar + + - name: Upload Server Files + uses: actions/upload-artifact@v4 + with: + name: OpenStarbound-Linux-Server + path: server.tar
\ No newline at end of file |