-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds nightly release task for container #3944
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like
process.env.NIGHTLY === true
needs to be
process.env.NIGHTLY === 'true'
as env variables seem to be taken as strings instead.
Two other old cases in this file (scripts/tools/release-cli/release-cli.js) where NIGHTLY is being checked as boolean, so you may change those as well. They didn't do any harm till now, but was outputting wrong logs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't think of any other edge cases. Fine for me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
last comments (hopefully 🤞 )
Container nightly release was successful from this branch. Run went well |
Description
Changes proposed in this pull request:
Related issue(s)
Resolves #3932