We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0be4ebe commit 9a39496Copy full SHA for 9a39496
1 file changed
.github/workflows/docker-image.yml
@@ -5,6 +5,11 @@ on:
5
tags:
6
- 'v*'
7
workflow_dispatch:
8
+ inputs:
9
+ build_version:
10
+ description: 'Version label shown in the admin UI, e.g. 2.0.6'
11
+ required: false
12
+ type: string
13
14
permissions:
15
contents: read
@@ -58,7 +63,7 @@ jobs:
58
63
tags: ${{ steps.meta.outputs.tags }}
59
64
labels: ${{ steps.meta.outputs.labels }}
60
65
build-args: |
61
- BUILD_VERSION=${{ github.ref_name }}
66
+ BUILD_VERSION=${{ inputs.build_version || github.ref_name }}
62
67
cache-from: type=gha
68
cache-to: type=gha,mode=max
69
provenance: false
0 commit comments