Skip to content

Commit ec72729

Browse files
authored
Merge pull request #21 from coder/jon/fixhelm
chore: move helm files into helm dir
2 parents d28f948 + c1b0d31 commit ec72729

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

scripts/helm.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,16 @@ fi
6565
# path of `helm package` except for the directory name :/
6666
temp_dir="$(mktemp -d)"
6767

68-
cd ./
68+
cd .
69+
mkdir -p build
70+
cp ./LICENSE build
71+
cp -r helm/* build
6972
log "--- Packaging helm chart for version $version ($output_path)"
7073
helm package \
7174
--version "$version" \
7275
--app-version "$version" \
7376
--destination "$temp_dir" \
74-
. 1>&2
77+
./build 1>&2
7578

7679
log "Moving helm chart to $output_path"
7780
cp "$temp_dir"/*.tgz "$output_path"

0 commit comments

Comments
 (0)