mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-19 21:37:57 +08:00
273 lines
8.1 KiB
YAML
273 lines
8.1 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
release_linux_x86_64_gui_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-gui-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "linux_x86_64_gui_debug.tar" build/prefab/full/linux_x86_64_gui/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: linux_x86_64_gui_debug.tar
|
|
|
|
release_linux_x86_64_server_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-server-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "linux_x86_64_server_debug.tar" build/prefab/full/linux_x86_64_server/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: linux_x86_64_server_debug.tar
|
|
|
|
release_linux_arm64_gui_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-linux-arm64-gui-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "linux_arm64_gui_debug.tar" build/prefab/full/linux_arm64_gui/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: linux_arm64_gui_debug.tar
|
|
|
|
release_linux_arm64_server_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-linux-arm64-server-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "linux_arm64_server_debug.tar" build/prefab/full/linux_arm64_server/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: linux_arm64_server_debug.tar
|
|
|
|
release_mac_x86_64_gui_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-mac-x86-64-gui-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "mac_x86_64_gui_debug.tar" build/prefab/full/mac_x86_64_gui/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: mac_x86_64_gui_debug.tar
|
|
|
|
release_mac_x86_64_server_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-mac-x86-64-server-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "mac_x86_64_server_debug.tar" build/prefab/full/mac_x86_64_server/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: mac_x86_64_server_debug.tar
|
|
|
|
release_mac_arm64_gui_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-mac-arm64-gui-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "mac_arm64_gui_debug.tar" build/prefab/full/mac_arm64_gui/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: mac_arm64_gui_debug.tar
|
|
|
|
release_mac_arm64_server_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-mac-arm64-server-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "mac_arm64_server_debug.tar" build/prefab/full/mac_arm64_server/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: mac_arm64_server_debug.tar
|
|
|
|
release_windows_x86_gui_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-windows-x86-gui-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "windows_x86_gui_debug.tar" build/prefab/full/windows_x86_gui/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: windows_x86_gui_debug.tar
|
|
|
|
release_windows_x86_server_debug_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make prefab-windows-x86-server-debug-build
|
|
- name: Compress the build
|
|
run: tar -cf "windows_x86_server_debug.tar" build/prefab/full/windows_x86_server/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: windows_x86_server_debug.tar
|
|
|
|
release_docker_gui_image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: |
|
|
make docker-gui-release
|
|
make docker-save
|
|
- name: Rename the build
|
|
run: mv build/docker/bombsquad_gui_release_docker.tar build/docker/bombsquad_docker_gui.tar
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: build/docker/bombsquad_docker_gui.tar
|
|
|
|
release_docker_server_image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: |
|
|
make docker-server-release
|
|
make docker-save
|
|
- name: Rename the build
|
|
run: mv build/docker/bombsquad_server_release_docker.tar build/docker/bombsquad_docker_server.tar
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: build/docker/bombsquad_docker_server.tar
|
|
|
|
release_sphinx_docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Setup project environment
|
|
run: make env
|
|
- name: Make the build
|
|
run: make docs-sphinx
|
|
- name: Compress the build
|
|
run: tar -cf "sphinx_html_docs.tar" build/sphinx/
|
|
- name: Upload the build
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
artifacts: sphinx_html_docs.tar |