Add .forgejo/workflow/godot-html5.yml
All checks were successful
Test Runner / test (push) Successful in 8s
All checks were successful
Test Runner / test (push) Successful in 8s
This commit is contained in:
parent
1851090a7b
commit
02fcaf49bd
1 changed files with 24 additions and 0 deletions
24
.forgejo/workflow/godot-html5.yml
Normal file
24
.forgejo/workflow/godot-html5.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
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: Create build folder
|
||||||
|
run: mkdir -p build/html5
|
||||||
|
|
||||||
|
- name: Export HTML5 build
|
||||||
|
run: |
|
||||||
|
godot --headless --export-release "HTML5" build/html5/index.html
|
||||||
Loading…
Add table
Reference in a new issue