We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86a08d1 commit 85bfdc0Copy full SHA for 85bfdc0
1 file changed
.github/workflows/docker-publish.yml
@@ -3,6 +3,12 @@ name: Publish multi-arch Docker image
3
on:
4
release:
5
types: [published]
6
+ workflow_dispatch:
7
+ inputs:
8
+ overpass_version:
9
+ description: 'Version number to build (e.g. 0.7.62)'
10
+ required: true
11
+ type: string
12
13
permissions:
14
contents: read
@@ -17,7 +23,7 @@ jobs:
17
23
output: image
18
24
push: true
19
25
platforms: linux/amd64,linux/arm64
20
- build-args: OVERPASS_VERSION=${{ github.event.release.tag_name }}
26
+ build-args: OVERPASS_VERSION=${{ github.event.release.tag_name || inputs.overpass_version }}
21
27
meta-images: ${{ vars.DOCKERHUB_USERNAME }}/overpass-api
22
28
meta-tags: type=semver,pattern={{version}}
29
secrets:
0 commit comments