We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac94e6 commit 7c2e965Copy full SHA for 7c2e965
1 file changed
.github/workflows/__test-workflow-docker-build-images.yml
@@ -164,9 +164,10 @@ jobs:
164
const expectedTaggedVersions = isSigned ? 2 : 1;
165
166
// Expected untagged versions:
167
- // - For single platform: 0 (no multiarch manifest created)
168
- // - For multi platform: number of platforms (one per platform)
169
- const expectedUntaggedVersions = isSinglePlatform ? 0 : platforms.length;
+ // - For single platform: 1 (the digest-only push from build step)
+ // - For multi platform: number of platforms (one per platform digest-only push)
+ // Note: The build step uses push-by-digest which creates untagged versions
170
+ const expectedUntaggedVersions = platforms.length;
171
172
assert.equal(
173
taggedVersions.length,
0 commit comments