From b8e06cca56078e153598cbe581af1b526d3849f4 Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Tue, 12 May 2026 09:37:32 +0300 Subject: [PATCH] ci: fix goreleaser nfpm README path and bump to 0.122.6 - goreleaser nfpm contents pointed to ./core/README.md which doesn't exist; switched to repo-root ./README.md - bump VERSION to 0.122.6 for third pipeline test --- .goreleaser.yaml | 4 ++-- core/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 4b77e50..90d8afe 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -86,7 +86,7 @@ nfpms: section: utils priority: optional contents: - - src: ./core/README.md + - src: ./README.md dst: /usr/share/doc/orama/README.md deb: lintian_overrides: @@ -108,7 +108,7 @@ nfpms: section: net priority: optional contents: - - src: ./core/README.md + - src: ./README.md dst: /usr/share/doc/orama-node/README.md deb: lintian_overrides: diff --git a/core/Makefile b/core/Makefile index 21c37ef..eb25933 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.5 +VERSION := 0.122.6 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)'