Skip to content

Forgot a config change #60

Forgot a config change

Forgot a config change #60

Workflow file for this run

name: Test
on:
push:
branches:
- main
- legacy
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
ref: de79197258ede94599344579d06381a547466647 # pre-4.0
- name: Export HTML
uses: robpc/godot-export-action@legacy
with:
preset: html
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
ref: de79197258ede94599344579d06381a547466647 # pre-4.0
path: project
- name: Export HTML
uses: robpc/godot-export-action@legacy
with:
project_directory: project
preset: html
export_path: build/index.html
- name: Test for the output file
run: stat ./project/build/index.html