Skip to content
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ brews:
- ids:
- kvs
name: kvs
tap:
repository:
owner: skyoo2003
name: homebrew-tap
token: "{{ .Env.GITHUB_TOKEN }}"
folder: Formula
directory: Formula
url_template: "https://github.com/skyoo2003/kvs/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: Sung-Kyu Yoo
Expand All @@ -76,7 +76,7 @@ brews:
bin.install "kvs"
skip_upload: false

dockers:
dockers_v2:
- images:
- ghcr.io/skyoo2003/kvs
dockerfile: Dockerfile.goreleaser
Comment on lines +79 to 82
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (bug_risk): The dockers_v2 key is likely invalid and will be ignored by GoReleaser.

GoReleaser only recognizes dockers (and docker_manifests) as top-level keys; dockers_v2 is not part of the schema, so this block will be ignored. Rename it to dockers and, if you intend to use the v2 Docker builder, update the nested fields accordingly so your images are actually built and published.

Expand Down
Loading