mirror of
https://github.com/lucky-sideburn/kubeinvaders.git
synced 2026-02-25 15:03:50 +00:00
11 lines
260 B
Bash
11 lines
260 B
Bash
#! /bin/bash
|
|
|
|
echo "Release new version of the KubeInvaders Helm Chart"
|
|
|
|
helm package ../helm-charts/kubeinvaders/
|
|
tar_gz_name=$(ls -art | grep "kubeinvaders.*.tgz")
|
|
cp $tar_gz_name ../../helm-charts/
|
|
rm -f $tar_gz_name
|
|
cd ../../helm-charts/
|
|
helm repo index .
|