Skip to content
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A GitHub Action that downloads and configures the [Ona CLI](https://www.gitpod.i
## Usage

```yaml
- uses: ona-io/setup-ona@v1
- uses: gitpod-io/setup-ona@v1
with:
token: ${{ secrets.ONA_TOKEN }} # optional
```
Expand All @@ -23,15 +23,15 @@ A GitHub Action that downloads and configures the [Ona CLI](https://www.gitpod.i

```yaml
steps:
- uses: ona-io/setup-ona@v1
- uses: gitpod-io/setup-ona@v1
- run: gitpod --help
```

### With authentication

```yaml
steps:
- uses: ona-io/setup-ona@v1
- uses: gitpod-io/setup-ona@v1
with:
token: ${{ secrets.ONA_TOKEN }}
- run: gitpod whoami
Expand All @@ -42,7 +42,7 @@ steps:

```yaml
steps:
- uses: ona-io/setup-ona@v1
- uses: gitpod-io/setup-ona@v1
with:
channel: latest
```
Expand All @@ -51,7 +51,7 @@ steps:

```yaml
steps:
- uses: ona-io/setup-ona@v1
- uses: gitpod-io/setup-ona@v1
with:
token: ${{ secrets.ONA_TOKEN }}
- run: gitpod environment create https://github.com/${{ github.repository }}
Expand Down