Skip to content

Commit

Permalink
fix: sanitise image name in artefact download
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypta-Eve authored Jan 31, 2025
1 parent 2a5393b commit c2ee4f0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,17 @@ jobs:
- ghcr.io/eveseat/seat
steps:

- name: Image name sanitise
run: |
image=${{ matrix.image }}
echo "IMAGE_NAME=${image//\//-}" >> $GITHUB_ENV


- name: Download digests
uses: actions/download-artifact@v4
with:
path: ${{ runner.temp }}/digests
pattern: digests-${{ matrix.image }}*
pattern: digests-${{ env.IMAGE_NAME }}*
merge-multiple: true

- name: Set up Docker Build-X
Expand Down

0 comments on commit c2ee4f0

Please sign in to comment.