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