This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v2-11-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-11-test by this push:
new b1a75bdbdd6 Modernize artifact download (#63146)
b1a75bdbdd6 is described below
commit b1a75bdbdd685e00e5f4bb5d63b268a7b7d2113c
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Mar 8 20:34:39 2026 +0100
Modernize artifact download (#63146)
---
.github/workflows/prod-image-build.yml | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/prod-image-build.yml
b/.github/workflows/prod-image-build.yml
index b6f906b8bbc..7c3ada9367f 100644
--- a/.github/workflows/prod-image-build.yml
+++ b/.github/workflows/prod-image-build.yml
@@ -232,8 +232,20 @@ jobs:
- name: "Download constraints"
uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
- pattern: constraints-*
- path: ./docker-context-files
+ name: constraints-${{ matrix.python-version }}
+ path: ./docker-context-files/constraints-${{ matrix.python-version }}
+ - name: "Show downloaded files"
+ run: ls -R ./docker-context-files
+ - name: "Show constraints"
+ run: |
+ for file in ./docker-context-files/constraints*/constraints*.txt
+ do
+ echo "=== ${file} ==="
+ echo
+ cat ${file}
+ echo
+ echo "=== END ${file} ==="
+ done
- name: "Login to ghcr.io"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}