Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
build(goreleaser)!: use .Version for container image tags instead of …
Browse files Browse the repository at this point in the history
….Tag

BREAKING CHANGE: container image tags are no longer prefixed with v (e.g. v0.4.0), only a pure version number is used
  • Loading branch information
vojtechmares committed Nov 18, 2021
1 parent 5c59270 commit a83360e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dockers:
goos: linux
goarch: amd64
image_templates:
- "vojtechmares/statica:{{ .Tag }}-amd64"
- "vojtechmares/statica:{{ .Version }}-amd64"
skip_push: false
dockerfile: Containerfile
use: buildx
Expand All @@ -77,7 +77,7 @@ dockers:
- goos: linux
goarch: arm64
image_templates:
- "vojtechmares/statica:{{ .Tag }}-arm64v8"
- "vojtechmares/statica:{{ .Version }}-arm64v8"
skip_push: false
dockerfile: Containerfile
use: buildx
Expand Down

0 comments on commit a83360e

Please sign in to comment.