This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch modernize-download-artifact-in-prod in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 31b42088baead73a69fa5933763bfb97b2cdfb53 Author: Jarek Potiuk <[email protected]> AuthorDate: Sun Mar 8 19:24:10 2026 +0100 Modernize artifact download --- .github/workflows/prod-image-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prod-image-build.yml b/.github/workflows/prod-image-build.yml index b6f906b8bbc..e7561f635e3 100644 --- a/.github/workflows/prod-image-build.yml +++ b/.github/workflows/prod-image-build.yml @@ -232,8 +232,8 @@ jobs: - name: "Download constraints" uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: - pattern: constraints-* - path: ./docker-context-files + pattern: constraints-${{ matrix.python-version }} + path: ./docker-context-files/constraints-${{ matrix.python-version }} - name: "Login to ghcr.io" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
