Skip to content

Commit

Permalink
ci: Fix workflow breakage on version bump (attempt 2) (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
varungandhi-src authored Sep 26, 2024
1 parent acbe999 commit da9a03c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-env-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,14 @@ jobs:
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
DIGEST_SUFFIX=${{ matrix.platform }}
DIGEST_SUFFIX="${DIGEST_SUFFIX//\//_}"
echo "DIGEST_SUFFIX=$DIGEST_SUFFIX" >> $GITHUB_ENV
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: digests-${{ matrix.runs-on }}
name: digests-${{ env.DIGEST_SUFFIX }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
Expand Down

0 comments on commit da9a03c

Please sign in to comment.