builds godot
Diffstat (limited to '.github/workflows/build-3.x-normal.yml')
| -rw-r--r-- | .github/workflows/build-3.x-normal.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/build-3.x-normal.yml b/.github/workflows/build-3.x-normal.yml new file mode 100644 index 0000000..1b3fec5 --- /dev/null +++ b/.github/workflows/build-3.x-normal.yml @@ -0,0 +1,22 @@ +name: Build godot on branch 3.x (normal) + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + push: + branches: + - main + paths: + - .github/normal*.py + - "**.yml" + +jobs: + build: + name: Build + uses: bend-n/godot-builds/.github/workflows/reusable-build.yml@main + with: + ref: 3.x + name: godot + modules-url: https://raw.githubusercontent.com/bend-n/godot-builds/main/.github/normal-build-modules.py + secrets: inherit |