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
> See "[Installing kubectl - Amazon EKS](https://docs.aws.amazon.com/eks/latest/userguide/install-kubectl.html)" for information how to specify the kubectl version.
40
41
@@ -47,30 +48,41 @@ jobs:
47
48
build:
48
49
runs-on: ubuntu-latest
49
50
steps:
50
-
- uses: actions/checkout@v1
51
51
- name: Setup helmfile
52
-
uses: mamezou-tech/setup-helmfile@v0.5.0
52
+
uses: mamezou-tech/setup-helmfile@v0.7.0
53
53
with:
54
-
helmfile-version: "v0.118.0"
54
+
helmfile-version: "v0.135.0"
55
55
```
56
56
57
-
If you want use default kubectl / Helm installed in GitHub Runner. you can specify inputs to not install them.
57
+
If you are not particular about the version of kubectl / Helm and you can use the versions pre-installed on GitHub Actions runner, you can specify inputs not to install them.
58
+
59
+
> Notice: Helm plugins will be installed in this case.
58
60
59
61
```yaml
60
-
name: CI
61
-
on: [push]
62
62
jobs:
63
63
build:
64
64
runs-on: ubuntu-latest
65
65
steps:
66
-
- uses: actions/checkout@v1
67
66
- name: Setup helmfile
68
-
uses: mamezou-tech/setup-helmfile@v0.6.0
67
+
uses: mamezou-tech/setup-helmfile@v0.7.0
69
68
with:
70
69
install-kubectl: no
71
70
install-helm: no
72
71
```
73
72
73
+
If you don't want helm plugins installed, specify `no` for `install-helm-plugins`.
0 commit comments