Merge pull request #213 from harness/CLI-54049/add-GatewayAPI-spec-re… #195
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 chart-testing | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Configure git | |
| run: | | |
| git config user.name "$GITHUB_ACTION" | |
| git config user.email "$GITHUB_ACTION@users.noreply.github.com" | |
| - name: Install Helm | |
| uses: azure/setup-helm@v3 | |
| with: | |
| version: v3.8.1 | |
| - name: Add Helm repos | |
| run: | | |
| helm repo add bitnami https://charts.bitnami.com/bitnami | |
| - name: Run Chart Releaser | |
| uses: helm/chart-releaser-action@v1.5.0 | |
| with: | |
| charts_dir: src | |
| env: | |
| CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |