Skip to content

Commit

Permalink
ci: Fix release pipeline (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
zerok authored Jul 15, 2024
1 parent eca0f59 commit 89aedd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
REGISTRY_IMAGE: ghcr.io/grafana/flagger-k6-webhook
TAG_CONFIG: |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
type=raw,value={{tag}},enable=${{ github.ref == 'refs/tags' && github.event_name == 'push' }}
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/') && github.event_name == 'push' }}
type=sha,enable=${{ github.event_name == 'pull_request' }}
jobs:
Expand Down

0 comments on commit 89aedd0

Please sign in to comment.