fix(release): move gitea_urls to top-level (goreleaser v2 schema)
goreleaser v2 dropped `release.gitea_urls`; the key is now top-level on its own. With the old nested form `goreleaser release` failed with `yaml: unmarshal errors: line 67: field gitea_urls not found in type config.Release` before even starting the build. Re-anchor to v0.9.14 so the ship pipeline can produce binaries.
This commit is contained in:
parent
2fc7ce1de0
commit
1376357b20
1 changed files with 8 additions and 4 deletions
|
|
@ -63,11 +63,15 @@ changelog:
|
||||||
# these URLs and publishes the release there instead of GitHub. Reachable via
|
# these URLs and publishes the release there instead of GitHub. Reachable via
|
||||||
# `forgejo` hostname inside the dokploy-network (the runner shares it); for
|
# `forgejo` hostname inside the dokploy-network (the runner shares it); for
|
||||||
# local goreleaser runs outside the network, override via env GITEA_API_URL.
|
# local goreleaser runs outside the network, override via env GITEA_API_URL.
|
||||||
release:
|
#
|
||||||
|
# In goreleaser v2 `gitea_urls` is a top-level key (was nested under `release`
|
||||||
|
# in v1).
|
||||||
gitea_urls:
|
gitea_urls:
|
||||||
api: http://forgejo:3000/api/v1
|
api: http://forgejo:3000/api/v1
|
||||||
download: https://git.torrentclaw.com
|
download: https://git.torrentclaw.com
|
||||||
skip_tls_verify: false
|
skip_tls_verify: false
|
||||||
|
|
||||||
|
release:
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: auto
|
prerelease: auto
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue