Skip to content

Commit

Permalink
Merge pull request #3046 from nerdCopter/20221013_github_actions_work…
Browse files Browse the repository at this point in the history
…flow_manual_build

Workflow improvement - add option for non-PR manual builds
  • Loading branch information
haslinghuis committed Oct 14, 2022
2 parents 2d84e47 + 1166122 commit b5c2216
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Manual Build
run-name: Manual Build ${{ github.ref_name }} ${{ ((inputs.debug_build == true) && '(debug)') || '' }}

on:
workflow_dispatch:
inputs:
debug_build:
description: 'Specifies if it is a debug build or a release build'
default: true
required: false
type: boolean

jobs:
ci:
name: CI
uses: ./.github/workflows/ci.yml
with:
debug_build: ${{ inputs.debug_build }}

0 comments on commit b5c2216

Please sign in to comment.