Skip to content

Updated to Godot 4.2.2 #69

Updated to Godot 4.2.2

Updated to Godot 4.2.2 #69

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- Dockerfile
- entrypoint.sh
- action.yml
- .github/workflows/test.yml
- .github/workflows/dockerhub.yml
jobs:
export:
runs-on: ubuntu-latest
name: Export
steps:
- name: Checkout test project
uses: actions/checkout@v3
with:
repository: robpc/maze-test-game
- name: Export HTML
uses: robpc/godot-export-action@main
with:
preset: web
export_path: build/index.html
- name: Test for the output file
run: stat ./build/index.html
export-with-project-directory:
runs-on: ubuntu-latest
name: Export with project_directory
steps:
- name: Checkout test project
uses: actions/checkout@v3
with:
repository: robpc/maze-test-game
path: project
- name: Export HTML
uses: robpc/godot-export-action@main
with:
project_directory: project
preset: web
export_path: build/index.html
- name: Test for the output file
run: stat ./project/build/index.html