-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Update download links in docs for GitHub releases #26473
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
Conversation
filename = maven_filename(artifact, version, packaging, classifier) | ||
return base + '/' + filename | ||
|
||
def maven_download(group, artifact, version, packaging, classifier): |
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.
if you prefer we can also get rid of the old one..
return '%s-%s%s.%s' % (artifact, version, classifier, packaging) | ||
|
||
def github_release_download(group, artifact, version, packaging, classifier): | ||
base = 'https://github.com/trinodb/trino/releases/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.
I think the link should depend on version right? 477+ will be github
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.
yeah .. @martint is working on that - see https://github.com/trinodb/trino/releases/tag/477-test
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.
See next line.. it adds the version folder there
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.
And yeah .. we merge this before we cut 477
Did you see #26470? |
Nope .. you did not notify me or request review.. I will close this here |
Description
With 477 the binaries will be on GitHub... this updates all the links in the docs to the new planned location.
Should be merged before 477 is cut, so also before #26350
Additional context and related issues
Part of simpligility/contributions#23
Also see https://github.com/trinodb/trino/releases/tag/477-test
Release notes
(x) This is not user-visible or is docs only, and no release notes are required.