From 42c9680178ee4a9f3f33382008fc5d9bedaef3e0 Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Sun, 14 Dec 2025 20:27:35 +0000 Subject: [PATCH] fix: use --skip=build for merge and capture full dist/ directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change merge mode to use 'release --skip=build' since binaries are pre-built - Upload full dist/ directory, not just files with extensions - This ensures binary directories are preserved across the artifact upload/download 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/actions/goreleaser/action.yml | 2 +- .github/workflows/go-release-cgo.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/goreleaser/action.yml b/.github/actions/goreleaser/action.yml index 7e35c09..87d4998 100644 --- a/.github/actions/goreleaser/action.yml +++ b/.github/actions/goreleaser/action.yml @@ -63,6 +63,6 @@ runs: with: distribution: goreleaser version: "~> v2" - args: release --clean + args: release --skip=build env: GITHUB_TOKEN: ${{ inputs.github-token }} diff --git a/.github/workflows/go-release-cgo.yaml b/.github/workflows/go-release-cgo.yaml index a37934a..c35b1b9 100644 --- a/.github/workflows/go-release-cgo.yaml +++ b/.github/workflows/go-release-cgo.yaml @@ -165,7 +165,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: release-${{ matrix.platform }} - path: dist/*.* + path: dist/ retention-days: 1 release: