Skip to content

Commit

Permalink
doc: final touch to prepare v0.1.0 release
Browse files Browse the repository at this point in the history
- Add correct links and install note
- Update the pipeline-run to target the release

Signed-off-by: Vincent Demeester <[email protected]>
  • Loading branch information
vdemeester authored and tekton-robot committed Jun 17, 2019
1 parent a3bfb7b commit 0bbea8b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 7 deletions.
34 changes: 28 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tekton/release-pipeline-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
type: git
params:
- name: revision
value: master
value: v0.1.0
- name: url
value: https://github.com/tektoncd/cli
---
Expand Down

0 comments on commit 0bbea8b

Please sign in to comment.