diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b7915bbd..edc8a3f85 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -221,15 +221,16 @@ 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 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