This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch releases-0.12 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 5b10df7329562d432ba51acc9f99dd062b17f2cb Author: Emre Şafak <[email protected]> AuthorDate: Mon Aug 25 01:07:55 2025 -0400 ci: Pass the GH token to actions/download-artifact (#2514) ## Why? `actions/download-artifact` is [failing to find artifacts](https://github.com/apache/fory/actions/runs/17198889531/job/48785824375) despite [artifacts being created](https://github.com/apache/fory/actions/runs/17198794761). ## What does this PR do? Pass the github token so the action can find artifacts from other workflow runs (ours are separate). --- .github/workflows/release-python.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-python.yaml b/.github/workflows/release-python.yaml index 435b35c7e..02474e68d 100644 --- a/.github/workflows/release-python.yaml +++ b/.github/workflows/release-python.yaml @@ -37,6 +37,7 @@ jobs: uses: actions/download-artifact@v5 with: run-id: ${{ github.event.workflow_run.id }} + github-token: ${{ secrets.GITHUB_TOKEN }} pattern: "pyfory-wheels-*" path: downloaded_wheels merge-multiple: true --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
