From 6e31184d0ed1c5981349f3b1b5a9a2cb9578a58d Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Tue, 12 May 2026 09:42:51 +0300 Subject: [PATCH] ci: point goreleaser at renamed DeBrosDAO/orama repo, bump to 0.122.7 The repo moved from DeBrosOfficial/network to DeBrosDAO/orama. GoReleaser was uploading artifacts to the old URL and getting 307 redirects, then retrying until secondary rate limits kicked in. - release.github.owner/name: DeBrosOfficial/network -> DeBrosDAO/orama - brews.repository.owner: DeBrosOfficial -> DeBrosDAO - all homepage URLs updated - bump VERSION to 0.122.7 for fourth pipeline test --- .goreleaser.yaml | 12 ++++++------ core/Makefile | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 90d8afe..b07a341 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -76,7 +76,7 @@ nfpms: builds: - orama vendor: DeBros - homepage: https://github.com/DeBrosOfficial/network + homepage: https://github.com/DeBrosDAO/orama maintainer: DeBros description: CLI tool for the Orama decentralized network license: MIT @@ -98,7 +98,7 @@ nfpms: builds: - orama-node vendor: DeBros - homepage: https://github.com/DeBrosOfficial/network + homepage: https://github.com/DeBrosDAO/orama maintainer: DeBros description: Node daemon for the Orama decentralized network license: MIT @@ -120,11 +120,11 @@ brews: ids: - orama-archives repository: - owner: DeBrosOfficial + owner: DeBrosDAO name: homebrew-tap token: "{{ .Env.HOMEBREW_TAP_TOKEN }}" folder: Formula - homepage: https://github.com/DeBrosOfficial/network + homepage: https://github.com/DeBrosDAO/orama description: CLI tool for the Orama decentralized network license: MIT install: | @@ -153,8 +153,8 @@ changelog: release: github: - owner: DeBrosOfficial - name: network + owner: DeBrosDAO + name: orama draft: false prerelease: auto name_template: "Release {{.Version}}" diff --git a/core/Makefile b/core/Makefile index eb25933..c5a30a7 100644 --- a/core/Makefile +++ b/core/Makefile @@ -63,7 +63,7 @@ test-e2e-quick: .PHONY: build clean test deps tidy fmt vet lint install-hooks push-devnet push-testnet rollout-devnet rollout-testnet release -VERSION := 0.122.6 +VERSION := 0.122.7 COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) DATE ?= $(shell date -u +%Y-%m-%dT%H:%M:%SZ) LDFLAGS := -X 'main.version=$(VERSION)' -X 'main.commit=$(COMMIT)' -X 'main.date=$(DATE)'