We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 774f85a commit 0fb5507Copy full SHA for 0fb5507
.github/actions/setup-helmfile/action.yaml
@@ -0,0 +1,13 @@
1
+name: 'Setup helmfile'
2
+description: 'Sets up helmfile in /usr/local/bin/helmfile'
3
+runs:
4
+ using: "composite"
5
+ steps:
6
+ - name: install helmfile
7
+ run: |
8
+ curl -L https://github.com/helmfile/helmfile/releases/download/v1.1.3/helmfile_1.1.3_linux_amd64.tar.gz -o helmfile.tar.gz
9
+ tar -xvf /tmp/helmfile.tar.gz
10
+ mv helmfile /usr/local/bin
11
+ chmod +x /usr/local/bin/helmfile
12
+ working-directory: /tmp
13
+ shell: bash
0 commit comments