-
Notifications
You must be signed in to change notification settings - Fork 2
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
2.0.0-beta3 release #13
Conversation
COMMIT_SHA = '6432c60c8568' | ||
VERSION = '2.0.0-beta3' | ||
COMMIT_SHA = 'd86d59057def' | ||
CLOUDFRONT_DOMAIN = 'd3eygymyzkbhx3.cloudfront.net' |
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.
This cloudfront domain is static correct? It won't really change from release to release?
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.
correct, it only changes based on environments, but neither our scripts or the ones owned by MDX have environment awareness code, so I think it's more clear they're all pointing to one environment (prod)
# This here is only so we can show some progress, files are heavy | ||
open(filename, 'w') do |f| | ||
response.read_body do |chunk| | ||
f.write chunk | ||
progress += chunk.length | ||
printf("\rDownloaded: %.2f%%", 100*(progress/size)) | ||
end | ||
end |
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.
Thanks for adding this! Love being able to see the progress of the download
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.
Release and script changes look good to me! 🙏
No description provided.