Skip to content

Commit 62e4ac0

Browse files
committed
Don't include rust-gpu org prefix in container name
1 parent 2189cdd commit 62e4ac0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/container_images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
if: github.event_name != 'pull_request'
8484
run: |
8585
ARTIFACT_NAME="${{ matrix.variance.image }}"
86-
ARTIFACT_NAME="${ARTIFACT_NAME//\//-}"
86+
ARTIFACT_NAME="${ARTIFACT_NAME#*/}" # Remove everything before and including the slash
8787
echo "ARTIFACT_NAME=$ARTIFACT_NAME" >> $GITHUB_ENV
8888
- name: Export digest
8989
if: github.event_name != 'pull_request'
@@ -126,7 +126,7 @@ jobs:
126126
- name: Set artifact name
127127
run: |
128128
ARTIFACT_NAME="${{ matrix.variance.image }}"
129-
ARTIFACT_NAME="${ARTIFACT_NAME//\//-}"
129+
ARTIFACT_NAME="${ARTIFACT_NAME#*/}" # Remove everything before and including the slash
130130
echo "ARTIFACT_NAME=$ARTIFACT_NAME" >> $GITHUB_ENV
131131
- name: Download digests
132132
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)