aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/trigger_builds.yml
blob: 1dfc728e1899886c38d89f521f2e066036e9d0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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