Skip to content

Commit

Permalink
build: add inputs for manual workflow trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjo committed Oct 27, 2023
1 parent b110aab commit b8986f9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Build
on:
workflow_dispatch:
inputs:
version:
required: true
type: string
upload:
required: false
type: boolean
default: false
sign:
required: false
type: boolean
default: false
workflow_call:
inputs:
version:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/determine_version.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Determine version
on:
workflow_dispatch:
outputs:
version:
description: "Determined version"
value: ${{ jobs.determine_version.outputs.version }}
workflow_call:
outputs:
version:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/native_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ name: Native Build

on:
workflow_dispatch:
inputs:
version:
required: true
type: string
upload:
required: false
type: boolean
default: false
sign:
required: false
type: boolean
default: false
workflow_call:
inputs:
version:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/owasp.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: OWASP
on:
workflow_dispatch:
inputs:
version:
required: true
type: string
workflow_call:
inputs:
version:
Expand Down

0 comments on commit b8986f9

Please sign in to comment.