-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathTaskfile.yaml
37 lines (31 loc) · 910 Bytes
/
Taskfile.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# https://taskfile.dev
version: '3'
tasks:
default:
cmds:
- task --list-all
silent: true
package-incubator-hyperswitch-helm:
#language=sh
cmds:
- >
STACK=charts/incubator/hyperswitch-stack &&
version=$(grep '^version:' $STACK/Chart.yaml | awk '{print $2}') &&
helm package $STACK --dependency-update &&
helm repo index $STACK --url https://juspay.github.io/hyperswitch-helm/v$version &&
mkdir -p v$version && mv hyperswitch-stack-$version.tgz $STACK/index.yaml v$version &&
helm repo index . --url https://juspay.github.io/hyperswitch-helm
aliases:
- pihh
update-readme:
#language=sh
cmds:
- >
helm-docs --document-dependency-values=true --chart-search-root=charts/incubator
aliases:
- ur
repo-update-index:
#language=sh
cmds:
- >
helm repo index repo