Skip to content

Commit

Permalink
Package manually and skip packaging step (#56)
Browse files Browse the repository at this point in the history
* Package manually and skip packaging step

With the packaging step it includes some janky change detection that
we don't want

* Package in .cr-release-packages

* cd -

* try

* Fetch gh-pages

* Older version

* only main
  • Loading branch information
frankh authored Oct 4, 2023
1 parent a7a19ab commit 51cc6db
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/release-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,23 @@ jobs:
run: |
git config user.name "Max Hedgehog"
git config user.email "127861667+max-hedgehog[bot]@users.noreply.github.com"
git fetch origin gh-pages --depth=1
- 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
uses: helm/chart-releaser-action@4b85f2c82c80ff4284ff8520f47bbe69dd89b0aa
if: github.ref != 'refs/heads/main'
if: github.repository == 'PostHog/HouseWatch'
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
skip_existing: true
skip_packaging: true

0 comments on commit 51cc6db

Please sign in to comment.