builds godot
Diffstat (limited to '.github/workflows/build-3.x.yml')
| -rw-r--r-- | .github/workflows/build-3.x.yml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/.github/workflows/build-3.x.yml b/.github/workflows/build-3.x.yml index 44d6885..6704a17 100644 --- a/.github/workflows/build-3.x.yml +++ b/.github/workflows/build-3.x.yml @@ -4,11 +4,25 @@ on: workflow_dispatch: schedule: - cron: "0 0 * * *" + push: + branches: + - main + paths: + - .github/*.py + - "**.yml" jobs: build-3x: - name: Build 3.x + name: Build 3.x (2d) uses: bend-n/godot-2d-builds/.github/workflows/reusable-build.yml@main with: ref: 3.x secrets: inherit + build-3x-normal: + name: Build 3.x (normal) + uses: bend-n/godot-2d-builds/.github/workflows/reusable-build.yml@main + with: + ref: 3.x + name: godot + modules-url: https://raw.githubusercontent.com/bend-n/godot-2d-builds/main/.github/normal-build-modules.py + secrets: inherit |