Skip to content

Commit c3c5c3a

Browse files
author
Frederic Spiers
committed
fix(ci): path for package push
1 parent e1bad2a commit c3c5c3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
helm package . --app-version=${APP_VERSION} --version=${CHART_VERSION}
6464
6565
# Push to GHCR
66-
echo "Pushing Helm chart $CHART_NAME-$CHART_VERSION.tgz to oci://ghcr.io/${{ github.event.repository.name }}"
67-
if helm push ${{ github.workspace }}/.cr-release-packages/${CHART_NAME}-${CHART_VERSION}.tgz oci://ghcr.io/${{ github.event.repository.name }}; then
66+
echo "Pushing Helm chart $CHART_NAME-$CHART_VERSION.tgz to oci://ghcr.io/${{ github.repository }}"
67+
if helm push ${{ github.workspace }}/.cr-release-packages/${CHART_NAME}-${CHART_VERSION}.tgz oci://ghcr.io/${{ github.repository }}; then
6868
echo "Successfully released $CHART_NAME-$CHART_VERSION to GHCR"
6969
else
7070
echo "Failed to push $CHART_NAME-$CHART_VERSION to GHCR"

0 commit comments

Comments
 (0)