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 be33e7a
Show file tree
Hide file tree
Showing 3 changed files with 28 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
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 be33e7a

Please sign in to comment.