Skip to content

Commit 67d5aa7

Browse files
Merge pull request #6 from DeerHide/claude/fix-github-actions-Na4Au
Remove --all flag from skopeo copy commands in release workflow
2 parents 6b51354 + 1602822 commit 67d5aa7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,16 +109,16 @@ jobs:
109109
fi
110110
111111
# Push semantic version tag (1.2.3)
112-
skopeo copy --all "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:${IMAGE_VERSION}"
112+
skopeo copy "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:${IMAGE_VERSION}"
113113
114114
# Push major.minor tag (1.2)
115-
skopeo copy --all "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:${MAJOR}.${MINOR}"
115+
skopeo copy "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:${MAJOR}.${MINOR}"
116116
117117
# Push major tag (1)
118-
skopeo copy --all "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:${MAJOR}"
118+
skopeo copy "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:${MAJOR}"
119119
120120
# Push latest tag
121-
skopeo copy --all "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:latest"
121+
skopeo copy "oci-archive:build/${IMAGE_NAME}.tar" "docker://${REGISTRY}:latest"
122122
123123
- name: Verify pushed image
124124
env:

0 commit comments

Comments
 (0)