Skip to content

Commit 0fb5507

Browse files
committed
add setup helmfile
1 parent 774f85a commit 0fb5507

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)