Skip to content

Commit

Permalink
fix the url
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhan-yilmaz committed Oct 15, 2024
1 parent adc4dac commit 4596cd6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/helm-package-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@ jobs:
ls -al gh-pages-clone
# merge the helm index.yaml
helm repo index . --url ${{ steps.helm_package_download_url.outputs.download_url}} --merge gh-pages-clone/index.yaml
ACTUAL_RELEASE_URL="${{ steps.helm_package_download_url.outputs.download_url}}"
RELEASE_BASE_URL=base_url="${ACTUAL_RELEASE_URL%/*}"
echo "$base_url"
helm repo index . --url "$RELEASE_BASE_URL" --merge gh-pages-clone/index.yaml
ls -al
# replace the index.yaml with the new one
Expand Down

0 comments on commit 4596cd6

Please sign in to comment.