diff options
Diffstat (limited to '.github/workflows/trigger_builds.yml')
-rw-r--r-- | .github/workflows/trigger_builds.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/trigger_builds.yml b/.github/workflows/trigger_builds.yml new file mode 100644 index 00000000..1dfc728e --- /dev/null +++ b/.github/workflows/trigger_builds.yml @@ -0,0 +1,22 @@ +name: Build Application + +on: + push: + branches-ignore: + - 'stable' + pull_request: + workflow_dispatch: + +jobs: + + build_debug: + name: Build Debug + uses: ./.github/workflows/build.yml + with: + build_type: Debug + + build_release: + name: Build Release + uses: ./.github/workflows/build.yml + with: + build_type: Release |