Update docker-image.yml

This commit is contained in:
17_bzhzq 2022-08-22 16:03:28 +08:00 committed by GitHub
parent 63afa7a1e2
commit abc71bb2d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
@ -36,4 +47,4 @@ jobs: # workflow中的job
context: . context: .
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}