From 8769a1bcb6436a44c877bb7d006efe16c14896ce Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 3 Feb 2026 04:56:11 +0000 Subject: [PATCH] fix(release): correct build path to root (main.go at root, not cmd/) (#273) Co-authored-by: Claude Opus 4.5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12490df..4789ab8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: mkdir -p dist go build -ldflags="-s -w -X main.Version=${{ github.ref_name }}" \ -o dist/core-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.ext }} \ - ./cmd/core + . - name: Upload artifact uses: actions/upload-artifact@v4