Enable manual workflow dispatch with configurable inputs in CI/CD pipeline
This commit is contained in:
parent
a577601e52
commit
53f5f39ba9
1 changed files with 10 additions and 0 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -9,6 +9,16 @@ on:
|
||||||
tags: [ '*.*.*' ]
|
tags: [ '*.*.*' ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
workflow_dispatch: # Allow manual trigger
|
||||||
|
inputs:
|
||||||
|
push:
|
||||||
|
description: 'Push image to registry'
|
||||||
|
required: false
|
||||||
|
default: 'false'
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- 'false'
|
||||||
|
- 'true'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# github.repository as <account>/<repo>
|
# github.repository as <account>/<repo>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue