We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2189cdd commit 62e4ac0Copy full SHA for 62e4ac0
1 file changed
.github/workflows/container_images.yml
@@ -83,7 +83,7 @@ jobs:
83
if: github.event_name != 'pull_request'
84
run: |
85
ARTIFACT_NAME="${{ matrix.variance.image }}"
86
- ARTIFACT_NAME="${ARTIFACT_NAME//\//-}"
+ ARTIFACT_NAME="${ARTIFACT_NAME#*/}" # Remove everything before and including the slash
87
echo "ARTIFACT_NAME=$ARTIFACT_NAME" >> $GITHUB_ENV
88
- name: Export digest
89
@@ -126,7 +126,7 @@ jobs:
126
- name: Set artifact name
127
128
129
130
131
- name: Download digests
132
uses: actions/download-artifact@v4
0 commit comments