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 5816bce commit e6e71a3Copy full SHA for e6e71a3
1 file changed
.github/workflows/docker.yml
@@ -4,12 +4,18 @@ on:
4
workflow_run:
5
workflows: [ "Build and Release" ]
6
types: [ completed ]
7
+ workflow_dispatch:
8
+ inputs:
9
+ tag:
10
+ description: 'Image tag to build and push'
11
+ required: true
12
+ default: 'latest'
13
14
permissions:
15
contents: read
16
17
env:
- image_tag: ${{ github.event.workflow_run.head_branch }}
18
+ image_tag: ${{ github.event.inputs.tag || github.event.workflow_run.head_branch || 'latest' }}
19
20
jobs:
21
build-and-push:
0 commit comments