bump chart version to 0.0.9 to trigger ci #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Helm Charts | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'helm/**' | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Configure Git | |
| run: | | |
| git config user.name "$GITHUB_ACTOR" | |
| git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
| - name: Create gh-pages branch if it doesn't exist | |
| run: | | |
| if ! git ls-remote --exit-code origin gh-pages; then | |
| git checkout --orphan gh-pages | |
| git rm -rf . | |
| git commit --allow-empty -m "Initialize gh-pages branch" | |
| git push origin gh-pages | |
| git checkout main | |
| fi | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4 | |
| - name: Resolve local subchart dependencies | |
| run: helm dependency update helm/rexec | |
| - name: Run chart-releaser | |
| uses: helm/chart-releaser-action@v1.6.0 | |
| with: | |
| # chart-releaser looks for Chart.yaml one level deep under charts_dir, | |
| # so it will find helm/rexec/Chart.yaml and package the umbrella chart. | |
| charts_dir: helm | |
| env: | |
| CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |