TheFlipSide/.forgejo/workflows/godot-html5.yml
TVanteeffelen bc3d0aa502
Some checks failed
Build Godot HTML5 / build (push) Failing after 36s
Test Runner / test (push) Successful in 2s
Upload files to ".forgejo/workflows"
2026-05-09 01:18:42 -04:00

26 lines
No EOL
480 B
YAML

name: Build Godot HTML5
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
container:
image: barichello/godot-ci:4.2
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build HTML5
run: |
mkdir -p build/html5
godot --headless --export-release "HTML5" build/html5/index.html
- name: Deploy to Nginx folder
run: |
rsync -av build/html5/ /deploy/TheFlipSide