@@ -169,8 +169,8 @@ jobs:
169
169
flavor : |
170
170
latest=false
171
171
tags : |
172
- # full tag minus v
173
- type=match,pattern=v(.*),group=1
172
+ # Only version, no revision
173
+ type=match,pattern=v(.*)-(.*) ,group=1
174
174
- id : meta-ghcr
175
175
name : Metadata - GHCR
176
176
uses : docker/metadata-action@v3
@@ -192,8 +192,8 @@ jobs:
192
192
flavor : |
193
193
latest=false
194
194
tags : |
195
- # full tag minus v
196
- type=match,pattern=v(.*),group=1
195
+ # Only version, no revision
196
+ type=match,pattern=v(.*)-(.*) ,group=1
197
197
# Manifest for either branch or semver
198
198
- name : manifest-dockerhub
199
199
run : docker manifest create ${{ steps.meta-dockerhub.outputs.tags }} --amend ${{ steps.meta-dockerhub.outputs.tags }}-amd64 --amend ${{ steps.meta-dockerhub.outputs.tags }}-arm64v8
@@ -225,10 +225,10 @@ jobs:
225
225
run : docker manifest push ghcr.io/${{ env.IMAGE_NAME }}:latest
226
226
if : startsWith(github.ref, 'refs/tags/')
227
227
- name : push-dockerhub-tags
228
- run : docker manifest push ${{ steps.meta-dockerhub-tags .outputs.tags }}
228
+ run : docker manifest push ${{ steps.meta-dockerhub-tag .outputs.tags }}
229
229
if : startsWith(github.ref, 'refs/tags/')
230
230
- name : push-ghcr-tags
231
- run : docker manifest push ${{ steps.meta-ghcr-tags .outputs.tags }}
231
+ run : docker manifest push ${{ steps.meta-ghcr-tag .outputs.tags }}
232
232
if : startsWith(github.ref, 'refs/tags/')
233
233
# Update Docker Hub from README
234
234
- name : Docker Hub Description
0 commit comments