From c76e22bee1c4cde09f6a610c4524d255bd0790e1 Mon Sep 17 00:00:00 2001 From: Frank Hamand Date: Wed, 4 Oct 2023 19:59:50 +0100 Subject: [PATCH] Package manually and skip packaging step With the packaging step it includes some janky change detection that we don't want --- .github/workflows/release-chart.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index c30630d..81500a5 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -39,6 +39,11 @@ 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/ + helm package charts/housewatch + - name: Run chart-releaser uses: helm/chart-releaser-action@ed43eb303604cbc0eeec8390544f7748dc6c790d if: github.repository == 'PostHog/HouseWatch' @@ -46,3 +51,4 @@ jobs: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" with: skip_existing: true + skip_packaging: true