Diffstat (limited to '.github/workflows/export.yml')
| l--------- | .github/workflows/export.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml new file mode 120000 index 0000000..a24ee36 --- /dev/null +++ b/.github/workflows/export.yml @@ -0,0 +1,22 @@ +name: "export" +on: + workflow_dispatch: + push: + paths: + - "**.gd" + - "**.tscn" + - "**.import" + - "**.tres" + - "**.ttf" + - ".github/workflows/export.yml" + - "export_presets.cfg" + branches: + - main + +jobs: + export: + uses: bend-n/godot-actions/.github/workflows/callable-export.yml@main + with: + export-name: 2048 + image: ghcr.io/bend-n/godot-2d:4.1.1 + platforms: "windows linux web android mac" |