Use Linux assembly script
This commit is contained in:
parent
faae6e715a
commit
4fb380411f
20
.github/workflows/build_linux.yml
vendored
20
.github/workflows/build_linux.yml
vendored
@ -49,8 +49,24 @@ jobs:
|
|||||||
buildPreset: 'linux-release'
|
buildPreset: 'linux-release'
|
||||||
testPreset: 'linux-release'
|
testPreset: 'linux-release'
|
||||||
|
|
||||||
|
- name: Assemble Files
|
||||||
|
working-directory: ${{ github.workspace }}
|
||||||
|
run: scripts/ci/linux/assemble.sh
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: OpenStarbound-Dev-Linux-x86_64
|
name: OpenStarbound-Linux
|
||||||
path: dist/*
|
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
|
@ -41,3 +41,7 @@ cp \
|
|||||||
scripts/ci/linux/run-server.sh \
|
scripts/ci/linux/run-server.sh \
|
||||||
scripts/ci/linux/sbinit.config \
|
scripts/ci/linux/sbinit.config \
|
||||||
server_distribution/linux/
|
server_distribution/linux/
|
||||||
|
|
||||||
|
tar -cvf dist.tar dist
|
||||||
|
tar -cvf client.tar client_distribution
|
||||||
|
tar -cvf server.tar server_distribution
|
||||||
|
Loading…
Reference in New Issue
Block a user