Skip to content
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

add tile author guide for new Kiln users #407

Merged
merged 19 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Looking at an [example kiln tile](https://github.com/crhntr/hello-tile/tree/main
To install the `kiln` CLI
- install with Homebrew

```sh
```shell
brew tap pivotal-cf/kiln https://github.com/pivotal-cf/kiln
brew install kiln
```

- download from the [releases page](https://github.com/pivotal-cf/kiln/releases)

```sh
```shell
export KILN_VERSION
KILN_VERSION="$(curl -H "Accept: application/vnd.github.v3+json" 'https://api.github.com/repos/pivotal-cf/kiln/releases?per_page=1' | jq -r '.[0].name')"
curl -L -o kiln "https://github.com/pivotal-cf/kiln/releases/download/${KILN_VERSION}/kiln-darwin-${KILN_VERSION}"
Expand All @@ -32,7 +32,7 @@ To install the `kiln` CLI

- build from source

```sh
```shell
git clone [email protected]:pivotal-cf/kiln.git
cd kiln
git checkout 0.60.2
Expand All @@ -41,7 +41,7 @@ To install the `kiln` CLI

- copy from a Docker image (to another image)

```sh
```shell
docker pull pivotalcfreleng/kiln:latest
```

Expand Down
Loading
Loading