Skip to content

Commit a9146fa

Browse files
committed
[release] Remove version check until node version change
1 parent c90dafd commit a9146fa

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

docker/release-images.mjs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,6 @@ async function main() {
219219
// dry run
220220
console.log(`INFO: dry run: ${parsedArgs.DRY_RUN}`);
221221

222-
// Assert if we have a release version that the version matches the cargo version
223-
if (isReleaseImage(parsedArgs.IMAGE_TAG_PREFIX)) {
224-
assertTagMatchesSourceVersion(parsedArgs.IMAGE_TAG_PREFIX);
225-
}
226-
227222
// get the appropriate release group based on the image tag prefix
228223
const imageReleaseGroup = getImageReleaseGroupByImageTagPrefix(parsedArgs.IMAGE_TAG_PREFIX);
229224
console.log(`INFO: image release group: ${imageReleaseGroup}`);
@@ -359,4 +354,4 @@ if (import.meta.jest === undefined) {
359354
// Because we do this weird import in order to test we also have to resolve imports
360355
// However we force the caller to actually install pnpm first here
361356
await lazyImports();
362-
}
357+
}

0 commit comments

Comments
 (0)