changes
This commit is contained in:
parent
9273c610ce
commit
338850f10e
2 changed files with 4 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
output
|
output
|
||||||
.vscode
|
.vscode
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
/*.tgz
|
|
@ -8,10 +8,9 @@ rm -rf $SRCROOT/output && git clone -b gh-pages git@github.com:argoproj/argo-hel
|
||||||
for dir in $SRCROOT/charts/*;
|
for dir in $SRCROOT/charts/*;
|
||||||
do
|
do
|
||||||
echo "Processing $dir"
|
echo "Processing $dir"
|
||||||
version=$(cat $dir/Chart.yaml | grep version: | awk '{print $2}')
|
helm package $dir
|
||||||
tar -cvzf $SRCROOT/output/$(basename $dir)-$version.tgz -C $dir .
|
|
||||||
cd $SRCROOT/output && helm repo index .
|
|
||||||
done
|
done
|
||||||
|
cd $SRCROOT/output && helm repo index .
|
||||||
|
|
||||||
cd $SRCROOT/output && git status
|
cd $SRCROOT/output && git status
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue