Update docker-image.yml
This commit is contained in:
parent
63afa7a1e2
commit
abc71bb2d4
1 changed files with 12 additions and 1 deletions
11
.github/workflows/docker-image.yml
vendored
11
.github/workflows/docker-image.yml
vendored
|
|
@ -7,6 +7,17 @@ on: # 配置触发workflow的事件
|
||||||
- 'master'
|
- 'master'
|
||||||
tags: # tag更新时触发此workflow
|
tags: # tag更新时触发此workflow
|
||||||
- '*'
|
- '*'
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
name:
|
||||||
|
description: 'Person to greet'
|
||||||
|
required: true
|
||||||
|
default: 'Mona the Octocat'
|
||||||
|
home:
|
||||||
|
description: 'location'
|
||||||
|
required: false
|
||||||
|
default: 'The Octoverse'
|
||||||
|
|
||||||
|
|
||||||
jobs: # workflow中的job
|
jobs: # workflow中的job
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue