Skip to content

Commit

Permalink
[release] Remove version check until node version change (#13354)
Browse files Browse the repository at this point in the history
  • Loading branch information
perryjrandall committed May 28, 2024
1 parent dbcd44b commit b3af42c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions docker/release-images.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,6 @@ async function main() {
// dry run
console.log(`INFO: dry run: ${parsedArgs.DRY_RUN}`);

// Assert if we have a release version that the version matches the cargo version
if (isReleaseImage(parsedArgs.IMAGE_TAG_PREFIX)) {
assertTagMatchesSourceVersion(parsedArgs.IMAGE_TAG_PREFIX);
}

// get the appropriate release group based on the image tag prefix
const imageReleaseGroup = getImageReleaseGroupByImageTagPrefix(parsedArgs.IMAGE_TAG_PREFIX);
console.log(`INFO: image release group: ${imageReleaseGroup}`);
Expand Down Expand Up @@ -359,4 +354,4 @@ if (import.meta.jest === undefined) {
// Because we do this weird import in order to test we also have to resolve imports
// However we force the caller to actually install pnpm first here
await lazyImports();
}
}

0 comments on commit b3af42c

Please sign in to comment.