We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 213cff0 + 949eafd commit a60270bCopy full SHA for a60270b
.github/workflows/mirror_stable.yml
@@ -122,6 +122,8 @@ jobs:
122
./crane copy "docker.io/rust:${{ matrix.name }}" "ghcr.io/${{ github.repository_owner }}/rust:${{ matrix.name }}"
123
readarray -t TAGS <<< "${{ matrix.tags }}"
124
for tag in "${TAGS[@]}"; do
125
- ./crane tag "ghcr.io/${{ github.repository_owner }}/rust:${{ matrix.name }}" ${tag}
+ if [ -n "$tag" ]; then
126
+ ./crane tag "ghcr.io/${{ github.repository_owner }}/rust:${{ matrix.name }}" "${tag}"
127
+ fi
128
done
129
0 commit comments