diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index c30630d..febf97e 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -39,6 +39,15 @@ jobs: git config user.name "Max Hedgehog" git config user.email "127861667+max-hedgehog[bot]@users.noreply.github.com" + - name: Package + run: | + helm dependency update charts/housewatch/ + mkdir -p .cr-release-packages + cd .cr-release-packages + helm package ../charts/housewatch + cd - + set -x + - name: Run chart-releaser uses: helm/chart-releaser-action@ed43eb303604cbc0eeec8390544f7748dc6c790d if: github.repository == 'PostHog/HouseWatch' @@ -46,3 +55,4 @@ jobs: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" with: skip_existing: true + skip_packaging: true