File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 83
83
if : github.event_name != 'pull_request'
84
84
run : |
85
85
ARTIFACT_NAME="${{ matrix.variance.image }}"
86
- ARTIFACT_NAME="${ARTIFACT_NAME//\//-}"
86
+ ARTIFACT_NAME="${ARTIFACT_NAME#*/}" # Remove everything before and including the slash
87
87
echo "ARTIFACT_NAME=$ARTIFACT_NAME" >> $GITHUB_ENV
88
88
- name : Export digest
89
89
if : github.event_name != 'pull_request'
@@ -126,7 +126,7 @@ jobs:
126
126
- name : Set artifact name
127
127
run : |
128
128
ARTIFACT_NAME="${{ matrix.variance.image }}"
129
- ARTIFACT_NAME="${ARTIFACT_NAME//\//-}"
129
+ ARTIFACT_NAME="${ARTIFACT_NAME#*/}" # Remove everything before and including the slash
130
130
echo "ARTIFACT_NAME=$ARTIFACT_NAME" >> $GITHUB_ENV
131
131
- name : Download digests
132
132
uses : actions/download-artifact@v4
You can’t perform that action at this time.
0 commit comments