You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ jobs:
21
21
go-version: 1.15
22
22
- uses: actions/checkout@v2
23
23
24
-
- uses: imjasonh/setup-ko@v0.3
24
+
- uses: imjasonh/setup-ko@v0.4
25
25
- run: ko publish ./
26
26
```
27
27
@@ -42,7 +42,7 @@ By default, `imjasonh/setup-ko` installs the latest released version of `ko`.
42
42
You can select a version with the `version` parameter:
43
43
44
44
```yaml
45
-
- uses: imjasonh/setup-ko@v0.3
45
+
- uses: imjasonh/setup-ko@v0.4
46
46
with:
47
47
version: v0.8.0
48
48
```
@@ -57,7 +57,7 @@ To do this, you need to provide credentials to authorize the push.
57
57
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:
58
58
59
59
```
60
-
- uses: imjasonh/setup-ko@v0.3
60
+
- uses: imjasonh/setup-ko@v0.4
61
61
- env:
62
62
auth_token: ${{ secrets.auth_token }}
63
63
run: |
@@ -89,7 +89,7 @@ jobs:
89
89
with:
90
90
go-version: 1.15
91
91
- uses: actions/checkout@v2
92
-
- uses: imjasonh/setup-ko@v0.3
92
+
- uses: imjasonh/setup-ko@v0.4
93
93
94
94
- name: Generate and upload release.yaml
95
95
env:
@@ -102,6 +102,6 @@ jobs:
102
102
103
103
### A note on versioning
104
104
105
-
The `@v0.3` in the `uses` statement refers to the version _of the action definition in this repo._
105
+
The `@v0.4` in the `uses` statement refers to the version _of the action definition in this repo._
106
106
107
107
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:`.
0 commit comments