-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
ci/gha: fix downloading Release.key #4079
Conversation
Looks like it fixes the issue (I'm not sure what's wrong with |
using So, add |
I'm surprising that, in the past there was no cdn for download site in |
Since today, the URL from download.opensuse.org started returning a HTTP 302 redirect, so -L option for curl is needed to follow it. While at it, remove apt-key as per its man page recommendation: > Note: Instead of using this command a keyring should be placed > directly in the /etc/apt/trusted.gpg.d/ directory with a descriptive > name and either "gpg" or "asc" as file extension. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Thanks, updated to use |
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.
LGTM
For some reason, since today
does not produce any error, but there's no output either.
Switch to wget.Add -L to follow 3xx redirects.While at it, ditch apt-key as it's not supposed to be used that way.
Fixes: #4078