Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/prod-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
Loading