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.
1 parent 474622e commit 38c22d1Copy full SHA for 38c22d1
main.js
@@ -158,7 +158,7 @@ RUN echo "Building image for \${CROSSARCH_ARCH}"`
158
159
info('Creating and pushing manifests...')
160
for (const tag of tags) {
161
- const childImages = BUILD_FOR_ARCHS.map(arch => `build:${arch}`)
+ const childImages = BUILD_FOR_ARCHS.map(arch => `crossarch/${buildName}:${arch}-${tag}`)
162
await runCommand('docker', [
163
'manifest',
164
'create',
@@ -177,7 +177,7 @@ RUN echo "Building image for \${CROSSARCH_ARCH}"`
177
178
'annotate',
179
`crossarch/${buildName}:${tag}`,
180
- `build:${arch}`,
+ `crossarch/${buildName}:${arch}-${tag}`,
181
...archDescription,
182
])
183
}
0 commit comments