Skip to content

Commit 38c22d1

Browse files
committed
fix: use owned image for manifest creation
1 parent 474622e commit 38c22d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ RUN echo "Building image for \${CROSSARCH_ARCH}"`
158158

159159
info('Creating and pushing manifests...')
160160
for (const tag of tags) {
161-
const childImages = BUILD_FOR_ARCHS.map(arch => `build:${arch}`)
161+
const childImages = BUILD_FOR_ARCHS.map(arch => `crossarch/${buildName}:${arch}-${tag}`)
162162
await runCommand('docker', [
163163
'manifest',
164164
'create',
@@ -177,7 +177,7 @@ RUN echo "Building image for \${CROSSARCH_ARCH}"`
177177
'manifest',
178178
'annotate',
179179
`crossarch/${buildName}:${tag}`,
180-
`build:${arch}`,
180+
`crossarch/${buildName}:${arch}-${tag}`,
181181
...archDescription,
182182
])
183183
}

0 commit comments

Comments
 (0)