Skip to content

Commit 3abd39d

Browse files
authored
update release scripts to not fail on mv failure (#1256)
1 parent 049a6f7 commit 3abd39d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/publish-charts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if echo "${VERSION}" | grep -Eq "^v[0-9]+(\.[0-9]+){2}$"; then
2020
set -x
2121
git config pull.rebase false
2222
git checkout gh-pages
23-
mv -n $PACKAGE_DIR/stable/*.tgz .
23+
mv -n $PACKAGE_DIR/stable/*.tgz . || echo 'Ignoring mv failure'
2424
helm repo index . --url https://aws.github.io/eks-charts
2525
git add .
2626
git commit -m "Publish stable charts ${VERSION}"

0 commit comments

Comments
 (0)