-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: final touch to prepare v0.1.0 release
- Add correct links and install note - Update the pipeline-run to target the release Signed-off-by: Vincent Demeester <[email protected]>
- Loading branch information
1 parent
a3bfb7b
commit 0bbea8b
Showing
2 changed files
with
29 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,34 @@ Tekton ! | |
|
||
Download the latest binary executable for your operating system: | ||
|
||
// Note:- Need to update below links. | ||
* [Max OS X](README.md) | ||
* [Linux AMD 64](README.md) | ||
* [Windows AMD 64](README.md) | ||
|
||
// Need to add installation steps. | ||
* [Max OS X](https://github.com/tektoncd/cli/releases/download/v0.1.0/tektoncd-cli_0.1.0_Darwin_x86_64.tar.gz) | ||
|
||
```shell | ||
# Get the tar.xz | ||
curl -LO https://github.com/tektoncd/cli/releases/download/v0.1.0/tektoncd-cli_0.1.0_Darwin_x86_64.tar.gz | ||
# Extract tkn to your PATH (e.g. /usr/local/bin) | ||
sudo tar xvzf tektoncd-cli_0.1.0_Darwin_x86_64.tar.gz -C /usr/local/bin tkn | ||
``` | ||
|
||
* [Linux AMD 64](https://github.com/tektoncd/cli/releases/download/v0.1.0/tektoncd-cli_0.1.0_Linux_x86_64.tar.gz) | ||
|
||
```shell | ||
# Get the tar.xz | ||
curl -LO https://github.com/tektoncd/cli/releases/download/v0.1.0/tektoncd-cli_0.1.0_Linux_x86_64.tar.gz | ||
# Extract tkn to your PATH (e.g. /usr/local/bin) | ||
sudo tar xvzf tektoncd-cli_0.1.0_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn | ||
``` | ||
|
||
* [Linux ARM 64](https://github.com/tektoncd/cli/releases/download/v0.1.0/tektoncd-cli_0.1.0_Linux_arm64.tar.gz) | ||
|
||
```shell | ||
# Get the tar.xz | ||
curl -LO https://github.com/tektoncd/cli/releases/download/v0.1.0/tektoncd-cli_0.1.0_Linux_arm64.tar.gz | ||
# Extract tkn to your PATH (e.g. /usr/local/bin) | ||
sudo tar xvzf tektoncd-cli_0.1.0_Linux_arm64.tar.gz -C /usr/local/bin/ tkn | ||
``` | ||
|
||
If you have [go](https://golang.org/) installed `GO111MODULE="on" go get github.com/tektoncd/[email protected]` is all you need! | ||
|
||
### Useful Commands | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters