Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Point to latest release artifacts in README. #36

Merged
merged 1 commit into from
Dec 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,30 +33,30 @@ Commandline client for "Kubernetes as a Service" and more!

Download locations:

- [cloudctl-linux-amd64](https://github.com/fi-ts/cloudctl/releases/download/v0.7.12/cloudctl-linux-amd64)
- [cloudctl-darwin-amd64](https://github.com/fi-ts/cloudctl/releases/download/v0.7.12/cloudctl-darwin-amd64)
- [cloudctl-windows-amd64](https://github.com/fi-ts/cloudctl/releases/download/v0.7.12/cloudctl-windows-amd64)
- [cloudctl-linux-amd64](https://github.com/fi-ts/cloudctl/releases/latest/download/cloudctl-linux-amd64)
- [cloudctl-darwin-amd64](https://github.com/fi-ts/cloudctl/releases/latest/download/cloudctl-darwin-amd64)
- [cloudctl-windows-amd64](https://github.com/fi-ts/cloudctl/releases/latest/download/cloudctl-windows-amd64)

### Installation on Linux

```bash
curl -LO https://github.com/fi-ts/cloudctl/releases/download/v0.7.12/cloudctl-linux-amd64
curl -LO https://github.com/fi-ts/cloudctl/releases/latest/download/cloudctl-linux-amd64
chmod +x cloudctl-linux-amd64
sudo mv cloudctl-linux-amd64 /usr/local/bin/cloudctl
```

### Installation on MacOS

```bash
curl -LO https://github.com/fi-ts/cloudctl/releases/download/v0.7.12/cloudctl-darwin-amd64
curl -LO https://github.com/fi-ts/cloudctl/releases/latest/download/cloudctl-darwin-amd64
chmod +x cloudctl-darwin-amd64
sudo mv cloudctl-darwin-amd64 /usr/local/bin/cloudctl
```

### Installation on Windows

```bash
curl -LO https://github.com/fi-ts/cloudctl/releases/download/v0.7.12/cloudctl-windows-amd64
curl -LO https://github.com/fi-ts/cloudctl/releases/latest/download/cloudctl-windows-amd64
copy cloudctl-windows-amd64 cloudctl.exe
```

Expand Down