prep for v0.4

This commit is contained in:
Jason Hall 2021-04-30 22:46:54 -04:00
parent 53437e692a
commit 2c3450ca27

View File

@ -21,7 +21,7 @@ jobs:
go-version: 1.15 go-version: 1.15
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: imjasonh/setup-ko@v0.3 - uses: imjasonh/setup-ko@v0.4
- run: ko publish ./ - run: ko publish ./
``` ```
@ -42,7 +42,7 @@ By default, `imjasonh/setup-ko` installs the latest released version of `ko`.
You can select a version with the `version` parameter: You can select a version with the `version` parameter:
```yaml ```yaml
- uses: imjasonh/setup-ko@v0.3 - uses: imjasonh/setup-ko@v0.4
with: with:
version: v0.8.0 version: v0.8.0
``` ```
@ -57,7 +57,7 @@ To do this, you need to provide credentials to authorize the push.
You can use [encrypted secrets](https://docs.github.com/en/actions/reference/encrypted-secrets) to store the authorization token, and pass it to `ko login` before pushing: You can use [encrypted secrets](https://docs.github.com/en/actions/reference/encrypted-secrets) to store the authorization token, and pass it to `ko login` before pushing:
``` ```
- uses: imjasonh/setup-ko@v0.3 - uses: imjasonh/setup-ko@v0.4
- env: - env:
auth_token: ${{ secrets.auth_token }} auth_token: ${{ secrets.auth_token }}
run: | run: |
@ -89,7 +89,7 @@ jobs:
with: with:
go-version: 1.15 go-version: 1.15
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: imjasonh/setup-ko@v0.3 - uses: imjasonh/setup-ko@v0.4
- name: Generate and upload release.yaml - name: Generate and upload release.yaml
env: env:
@ -102,6 +102,6 @@ jobs:
### A note on versioning ### A note on versioning
The `@v0.3` in the `uses` statement refers to the version _of the action definition in this repo._ The `@v0.4` in the `uses` statement refers to the version _of the action definition in this repo._
Regardless of what version of the action definition you use, `imjasonh/setup-ko` will install the latest released version of `ko` unless otherwise specified with `version:`. Regardless of what version of the action definition you use, `imjasonh/setup-ko` will install the latest released version of `ko` unless otherwise specified with `version:`.