Loading
Commits on Source 3
-
Jenny Kim authored
The quay.io/skopeo/stable image's entrypoint is `skopeo`. GitLab CI runs job scripts via `<entrypoint> sh -c "<script>"`, so the resulting invocation is effectively `skopeo sh -c ...`, where skopeo parses `sh` as a subcommand and fails on the unrecognized `-c` flag: time="..." level=fatal msg="unknown shorthand flag: 'c' in -c" Override the entrypoint to an empty list so GitLab CI can run sh directly: image: name: quay.io/skopeo/stable:v${SKOPEO_VERSION} entrypoint: [""] Surfaced on the release-platform-canary v1.5.1 publish pipeline: https://gitlab.com/gitlab-org/security/release-platform-canary/-/jobs/14151634932 Related to delivery#22003 Co-Authored-By:Claude Opus 4.7 <noreply@anthropic.com>
-
John Skarbek authored
fix: override skopeo image entrypoint in sync-registry-artifacts See merge request !1449
-
semantic-release-bot authored
## [3.23.2](https://gitlab.com/gitlab-com/gl-infra/common-ci-tasks/-/compare/...) (2026-04-30) ### Fixes * override skopeo image entrypoint in sync-registry-artifacts ([854bb710](854bb710)), closes [delivery#22003](https://gitlab.com/gitlab-com/gl-infra/delivery/-/issues/)