-
Notifications
You must be signed in to change notification settings - Fork 932
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
Download source v8.9.0 not available #3324
Comments
I have the same issue, I've been trying to build a ci/cd pipeline and at the moment it fails at downloading the cloud foundry cli. |
This seems to be the release of v8.9.0 by @a-b The action ran successfully, so it was deleted afterwards. Unfortunately this really breaks cf-cli installer actions that relied on the stable links. |
Same here. CF-CLI installers not working due to missing artifact. |
For other people running into this problem, if you can change the version part of the url that is used in the cf-cli installer, or code your own GH action. The version v8.8.3 with the following link still works fine. (no |
For these people who are using "https://packages.cloudfoundry.org/stable?release=debian64" to derive the latest cf-cli version, it's the same issue as the origin of this topic. just as fyi ;) |
@AnnaDinaburgVulikh ah, it certainly wasn't supposed to - we are consumers of this library, I'd just mentioned it in our downstream PR and github linked the two. We worked around it in our CI/CD by referring directly to the 8.8.3 hosted on github (what the cloudfoundry URL is supposed to redirect to) if it helps you, our workaround is: curl -A "" -L -o cf8.deb 'https://github.com/cloudfoundry/cli/releases/download/v8.8.3/cf8-cli-installer_8.8.3_x86-64.deb'
sudo dpkg -i cf8.deb
rm cf8.deb
cf8 api https://api.fr.cloud.gov but I'll be keeping an eye on this ticket for a fix, so we don't have to pin 8.8.3! |
this appears to be resolved now. |
Please fill out the issue checklist below and provide ALL the requested information.
CF_TRACE=1
to help debug the issue.Describe the bug and the command you saw an issue with
We are downloading during our deployment always the newest version and we are getting this information by calling that url
https://packages.cloudfoundry.org/stable?release=linux64-binary&version=v8&source=github
This results now in that page
https://github.com/cloudfoundry/cli/releases/download/v8.9.0/cf8-cli_8.9.0_linux_x86-64.tgz
But this page is not available and we are getting a 404
What happened
Maybe there was a release published and retracted but the forwarding still points to the newest version.
Expected behavior
Publish the newest version or fix the link to point to the latest published version
Exact Steps To Reproduce
Steps to reproduce the behavior; include the exact CLI commands and verbose output:
The text was updated successfully, but these errors were encountered: