This is an automated email from the ASF dual-hosted git repository.
damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new ab36569659a fix GCP_PATH expansion (#39400)
ab36569659a is described below
commit ab36569659ac2423c39c5fe9da6ef200aa153837
Author: Abdelrahman Ibrahim <[email protected]>
AuthorDate: Tue Jul 21 16:30:11 2026 +0300
fix GCP_PATH expansion (#39400)
Co-authored-by: Abdelrahman Ibrahim <aeldsouky.c>
---
.github/workflows/build_wheels.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build_wheels.yml
b/.github/workflows/build_wheels.yml
index 6236888521a..02b223943fe 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -37,7 +37,8 @@ concurrency:
cancel-in-progress: true
env:
- GCP_PATH: "gs://${{ secrets.GCP_PYTHON_WHEELS_BUCKET
}}/${GITHUB_REF##*/}/${GITHUB_SHA}-${GITHUB_RUN_ID}/"
+ # Use github.* context; workflow env is not bash-evaluated.
+ GCP_PATH: "gs://${{ secrets.GCP_PYTHON_WHEELS_BUCKET }}/${{ github.ref_name
}}/${{ github.sha }}-${{ github.run_id }}/"
jobs: