mirror of https://gitee.com/answerdev/answer.git
update github action
This commit is contained in:
parent
8a5e386dd7
commit
dce45af181
|
@ -3,6 +3,10 @@ name: Manual Build DockerHub Image
|
|||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag_name:
|
||||
type: string
|
||||
required: true
|
||||
description: 'DockerHub img tag name'
|
||||
logLevel:
|
||||
description: 'Log level'
|
||||
required: true
|
||||
|
@ -18,6 +22,7 @@ on:
|
|||
type: boolean
|
||||
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -60,7 +65,7 @@ jobs:
|
|||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
file: ./.github/Dockerfile
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
tags: ${{ inputs.tag_name }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue