TheFlipSide/.forgejo/workflows/godot-html5.yml
TVanteeffelen abfb0dd818
Some checks failed
Build Godot HTML5 / build (push) Failing after 2s
Test Runner / test (push) Successful in 3s
revert 6ed442972e
revert Update .forgejo/workflows/godot-html5.yml
2026-05-09 01:21:59 -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