From a56fd71f6f20ca865f9681f1b20189847415a8ee Mon Sep 17 00:00:00 2001 From: Francesco Destefano Date: Wed, 3 Jun 2026 00:34:11 -0500 Subject: [PATCH] Release v1.0.0 #major --- .goreleaser.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index dddc358..6337d9f 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -11,7 +11,9 @@ before: builds: - id: renderer main: . - binary: RocketLeagueBot-Renderer + # Per-platform binary name so raw-binary uploads have unique filenames and + # can all live under a single package version on the Gitea registry. + binary: RocketLeagueBot-Renderer_{{ .Os }}_{{ .Arch }} # Pure-Go build (WASM SQLite, no cgo) — fully static, cross-compiles cleanly. env: - CGO_ENABLED=0 @@ -69,8 +71,10 @@ release: uploads: - name: gitea-package-registry + # Raw binaries (uniquely named per platform) plus checksums.txt, all under a + # single version: the standard Gitea generic layout .../{package}/{version}/{filename} mode: binary - target: "https://git.destefano.cloud/api/packages/texasmade/generic/RocketLeagueBot-Renderer/v{{ .Version }}_{{ .Os }}_{{ .Arch }}" + target: "https://git.destefano.cloud/api/packages/texasmade/generic/RocketLeagueBot-Renderer/v{{ .Version }}" username: "fdestefano" password: "{{ .Env.GITEA_SECRET }}" checksum: true # adds checksum header to the request \ No newline at end of file