33 lines
867 B
YAML
33 lines
867 B
YAML
name: "godot-ci export"
|
|
on: push
|
|
|
|
env:
|
|
GODOT_VERSION: mono-3.5.1
|
|
EXPORT_NAME: RPG-Test
|
|
|
|
jobs:
|
|
export-windows:
|
|
name: Windows Export
|
|
runs-on: ubuntu-20.04
|
|
container:
|
|
image: barichello/godot-ci:mono-3.5.1
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- name: Setup
|
|
run: |
|
|
mkdir -v -p ~/.local/share/godot/templates
|
|
mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable
|
|
- name: Windows Build
|
|
run: |
|
|
mkdir -v -p build/windows
|
|
cd $EXPORT_NAME
|
|
godot -v --export "Windows Desktop" ../build/windows/$EXPORT_NAME.exe
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: windows
|
|
path: build/windows
|