ci(releaser): fix double charts prefix

This commit is contained in:
secustor 2025-02-28 19:27:34 +01:00
parent e6c682248b
commit 8994c62db5
No known key found for this signature in database

View file

@ -51,5 +51,5 @@ jobs:
run: | run: |
IFS=',' read -ra CHARTS <<< "${{ steps.releaser.outputs.changed_charts }}" IFS=',' read -ra CHARTS <<< "${{ steps.releaser.outputs.changed_charts }}"
for chart in "${CHARTS[@]}"; do for chart in "${CHARTS[@]}"; do
helm push "charts/${chart}" "oci://ghcr.io/${GITHUB_REPOSITORY}" helm push "${chart}" "oci://ghcr.io/${GITHUB_REPOSITORY}"
done done