diff --git a/.github/workflows/release-apt.yml b/.github/workflows/release-apt.yml index b5edc98..2ca5b67 100644 --- a/.github/workflows/release-apt.yml +++ b/.github/workflows/release-apt.yml @@ -111,7 +111,6 @@ jobs: PKG_NAME="orama_${VERSION}_${ARCH}" dpkg-deb --build ${PKG_NAME} - mv ${PKG_NAME}.deb orama_${VERSION}_${ARCH}.deb - name: Upload artifact uses: actions/upload-artifact@v4 diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 85e1f47..4b77e50 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -9,7 +9,7 @@ env: before: hooks: - - cd core && go mod tidy + - go -C core mod tidy builds: # orama CLI binary diff --git a/core/Makefile b/core/Makefile index 8ba6015..21c37ef 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.4 +VERSION := 0.122.5 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)'