1
Fork 0
mirror of https://github.com/RYGhub/the-cold-night.git synced 2024-11-22 04:34:19 +00:00
the-cold-night/.github/workflows/godot-build.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

2022-04-01 23:14:16 +00:00
name: "Build game release"
on:
release:
types:
- published
jobs:
build:
name: "Build game"
runs-on: ubuntu-latest
container:
image: "barichello/godot-ci:3.4.4"
strategy:
matrix:
target:
- "Windows"
- "MacOSX"
- "LinuxX11"
- "HTML5"
steps:
- name: "⬇️ Checkout repository"
uses: actions/checkout@v2
with:
lfs: true
- name: "⚙️ Setup Godot templates"
run: |
mkdir -v -p ~/.local/share/godot/templates
mv /root/.local/share/godot/templates/3.4.4.stable ~/.local/share/godot/templates/3.4.4.stable
- name: "⚙️ Setup Godot build directories"
run: |
mkdir -v -p export/${{ matrix.target }}/LD50/
- name: "🏗️ Build game"
run: |
godot -v --export "${{ matrix.target }}"
- name: "⬆️ Upload artifact"
uses: actions/upload-artifact@v1
with:
name: "${{ matrix.target }}"
path: "export/${{ matrix.target }}"