We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13b2b60 commit 72a72b9Copy full SHA for 72a72b9
.github/workflows/build-and-push.yml
@@ -6,8 +6,8 @@ on:
6
workflow_dispatch:
7
inputs:
8
dockerImageTag:
9
- description: '镜像Tag'
10
- default: 'v1.9.0-dev'
+ description: 'Image Tag'
+ default: 'v1.10.0-dev'
11
required: true
12
dockerImageTagWithLatest:
13
description: '是否发布latest tag(正式发版时选择,测试版本切勿选择)'
@@ -62,6 +62,8 @@ jobs:
62
DOCKER_IMAGE=${{ secrets.FIT2CLOUD_REGISTRY_HOST }}/maxkb/maxkb
63
DOCKER_PLATFORMS=${{ github.event.inputs.architecture }}
64
TAG_NAME=${{ github.event.inputs.dockerImageTag }}
65
+ TAG_NAME_WITH_LATEST=${{ github.event.inputs.dockerImageTagWithLatest }}
66
+ echo ${TAG_NAME_WITH_LATEST}
67
if [[ ${TAG_NAME} == *dev* ]]; then
68
DOCKER_IMAGE_TAGS="--tag ${DOCKER_IMAGE}:${TAG_NAME}"
69
else
0 commit comments