Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@ changelog:
- '^docs:'
- '^test:'

dockers:
- image_templates:
- "scaleway/cli:latest"
- "scaleway/cli:{{ .Tag }}"
- "scaleway/cli:{{ .Major }}"
- "scaleway/cli:{{ .Major }}.{{ .Minor }}"
dockers_v2:
- images:
- "scaleway/cli"
Comment thread
remyleone marked this conversation as resolved.
Outdated
tags:
- "latest"
- "{{ .Tag }}"
- "{{ .Major }}"
- "{{ .Major }}.{{ .Minor }}"
extra_files:
- go.mod
- go.sum
Expand All @@ -59,8 +61,12 @@ dockers:
- commands
- internal
- .git
build_flag_templates:
- "--build-arg=VERSION={{ .Version }}"
platforms:
- linux/amd64
- linux/arm64
sbom: true
build_args:
VERSION: "{{ .Version }}"

release:
github:
Expand Down
Loading