Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2024-03-17 22:30:29 +1100
committerKae <80987908+Novaenia@users.noreply.github.com>2024-03-17 22:30:29 +1100
commit4fb380411f5612e842ac259a848d1ff47b6a74a3 (patch)
treea306c4fc917dd8343ad5177e1a80f586534f8d1a /.github
parentfaae6e715abd785393e7c2b5ed091236dcb2d637 (diff)
Use Linux assembly script
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_linux.yml20
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