Skip to content

Commit

Permalink
fix: helm publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Oct 19, 2023
1 parent ffcc7d1 commit 4b3cbd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ci/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ echo "πŸ“ Generating Image tags..."
echo "πŸ“ Helm version: ${HELM_VERSION}"
echo "πŸ“ Image version: ${IMAGE_VERSION}"

cd ./infra/chart || exit

echo "πŸ“ Updating Chart.yaml..."

find . -name "Chart.yaml" | while read -r file; do
Expand All @@ -48,6 +46,8 @@ onExit() {
}
trap onExit EXIT

cd ./infra/root_chart || exit

# login to registry
echo "πŸ” Logging into docker registry..."
echo "${DOCKER_PASSWORD}" | helm registry login "${DOMAIN}" -u "${DOCKER_USER}" --password-stdin
Expand Down

0 comments on commit 4b3cbd4

Please sign in to comment.