diff --git a/.gitignore b/.gitignore index 7b18b55..c5a44c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .deploy +.idea + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..16676df --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +all: + echo "package, upload, index. deploy will do all." + +deploy: package upload index + echo "done" + +package: + git checkout main + helm package charts/orb -u --destination .deploy + +upload: + git checkout main + cr upload --config cr-config.yaml + +index: + git checkout gh-pages + cr index -i ./index.yaml --config cr-config.yaml diff --git a/cr-config.yaml b/cr-config.yaml new file mode 100644 index 0000000..d8afc29 --- /dev/null +++ b/cr-config.yaml @@ -0,0 +1,3 @@ +owner: ns1labs +git-repo: orb-heml +package-path: .deploy