This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory.git
The following commit(s) were added to refs/heads/main by this push:
new f6d0c52bf ci: Pass the GH token to actions/download-artifact (#2514)
f6d0c52bf is described below
commit f6d0c52bfed0de51abe442fab31cabe5d06e1d4b
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]