From 8e96cb9537a9d3fbcd9b5f2dd325a6c70c2dab4f Mon Sep 17 00:00:00 2001 From: Robert Hebel Date: Fri, 17 Apr 2026 09:34:14 +0200 Subject: [PATCH 1/2] fix(ci): fix upload CLI binaries step --- .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 5b7915bbd..09735404c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -221,7 +221,7 @@ jobs: runs-on: ubuntu-latest needs: build-binaries container: - image: golang:1.25 + image: golang:1.26 steps: - name: Download CLI binaries artifact uses: actions/download-artifact@v8 From 82044349ab5360efb873d484a900b8a5dfa49da4 Mon Sep 17 00:00:00 2001 From: Robert Hebel Date: Fri, 17 Apr 2026 09:57:19 +0200 Subject: [PATCH 2/2] fix(ci): use workspace path for cli-binaries artifact in container job Container jobs don't share /tmp with the host runner, so download-artifact writes to a path the ghr shell step can't see. Using github.workspace fixes this as it is mounted into the container. Also upgrades golang image from 1.25 to 1.26 to satisfy ghr@latest (v0.18.3). Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09735404c..edc8a3f85 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -226,10 +226,11 @@ jobs: - name: Download CLI binaries artifact uses: actions/download-artifact@v8 with: - path: /tmp/ + name: cli-binaries + path: ${{ github.workspace }}/cli-binaries - name: Download GitHub Release Utility run: go install github.com/tcnksm/ghr@latest - name: Publish Release artifacts on GitHub - run: ghr -t ${{ github.token }} -u ${{ github.actor }} -r ${{ github.repository }} -c ${{ github.sha }} ${{ github.ref }} /tmp/cli-binaries + run: ghr -t ${{ github.token }} -u ${{ github.actor }} -r ${{ github.repository }} -c ${{ github.sha }} ${{ github.ref }} ${{ github.workspace }}/cli-binaries