Skip to content

Commit 2af087c

Browse files
author
Frederic Spiers
committed
fix(ci): chart releaser
1 parent 0c9c4d6 commit 2af087c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ jobs:
4242
uses: helm/[email protected]
4343
with:
4444
skip_existing: true
45-
skip_packaging: true
46-
skip_upload: true
4745
env:
4846
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
4947

@@ -66,7 +64,7 @@ jobs:
6664
6765
# Push to GHCR
6866
echo "Pushing Helm chart $CHART_NAME-$CHART_VERSION.tgz to oci://ghcr.io/${{ github.event.repository.name }}"
69-
if helm push ${{ github.workspace }}/$CHART_NAME-$CHART_VERSION.tgz oci://ghcr.io/${{ github.event.repository.name }}; then
67+
if helm push ${{ github.workspace }}/.cr-release-packages/${CHART_NAME}-${CHART_VERSION}.tgz oci://ghcr.io/${{ github.event.repository.name }}; then
7068
echo "Successfully released $CHART_NAME-$CHART_VERSION to GHCR"
7169
else
7270
echo "Failed to push $CHART_NAME-$CHART_VERSION to GHCR"

0 commit comments

Comments
 (0)