Skip to content

Commit

Permalink
fix: use pattern for semver docker image tags (#1411)
Browse files Browse the repository at this point in the history
Apparently pattern is mandatory.
  • Loading branch information
hf committed Feb 8, 2024
1 parent bc6a5b8 commit 14a3aeb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Publish to Image Registry

on:
push:
tags:
- "v*"
workflow_call:
inputs:
version:
Expand Down Expand Up @@ -35,7 +32,7 @@ jobs:
latest=false
tags: |
type=sha,enable=true
type=semver,value=${{ inputs.version }},enable=true
type=semver,pattern={{version}},value=${{ inputs.version }},enable=true
- uses: docker/setup-qemu-action@v2
with:
Expand Down

0 comments on commit 14a3aeb

Please sign in to comment.