From 43ea779b57a93d1130aeb24639b90f926839f2f3 Mon Sep 17 00:00:00 2001 From: Jonatan Antoni Date: Thu, 6 Aug 2026 13:51:14 +0200 Subject: [PATCH] Fix release job's download build artifacts step --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bffb305..49ef0ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -153,14 +153,14 @@ jobs: contents: write steps: - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: path: release-assets pattern: pyTS-* + skip-decompress: true merge-multiple: true - name: Upload executables to GitHub release env: GH_TOKEN: ${{ github.token }} - RELEASE_TAG: ${{ github.event.release.tag_name }} - run: gh release upload "$RELEASE_TAG" release-assets/* --clobber + run: gh release upload "${{ github.event.release.tag_name }}" release-assets/* --repo "${{ github.repository }}" --clobber