Closed
Description
Is there an existing issue for this?
- I have searched the existing issues
OS/Web Information
- Web Browser: Brave
- Local OS: Ubuntu
- Remote OS: Raspbian
- Remote Architecture: arm64/and64
code-server --version
: 2.19.0
Steps to Reproduce
- The latest version (4.101.0) has the wrong tag, so that the module gets the wrong URL
module "code-server" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/code-server/coder"
version = "1.3.0"
agent_id = coder_agent.example.id
}
- This should be the right url
+ curl -#fL -o ~/.cache/code-server/code-server-4.101.0-linux-arm64.tar.gz.incomplete -C - https://github.com/coder/code-server/releases/download/v4.101.0/code-server-4.101.0-linux-arm64.tar.gz
Installing code-server!
curl: (22) The requested URL returned error: 404
- The wrong url (the one generated with the tag) is
https://github.com/coder/code-server/releases/download/4.101.0/code-server-4.101.0-linux-arm64.tar.gz
Expected
Actual
Logs
Screenshot/Video
No response
Does this bug reproduce in native VS Code?
Yes, this is also broken in native VS Code
Does this bug reproduce in GitHub Codespaces?
Yes, this is also broken in GitHub Codespaces
Are you accessing code-server over a secure context?
- I am using a secure context.
Notes
No response