Fix proxy value (#9) #11
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: Helm Chart Package & Push to gh-pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'charts/**' # Only trigger when chart sources change | |
| workflow_dispatch: # Allows manual triggering for testing | |
| jobs: | |
| package-and-push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.PAT_QUALIFIRE_RP_HELM_GH_PAGES }} | |
| fetch-depth: 0 | |
| - name: Configure Git | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| - name: Run chart-releaser | |
| uses: helm/[email protected] | |
| with: | |
| packages_with_index: true | |
| env: | |
| CR_TOKEN: "${{ secrets.PAT_QUALIFIRE_RP_HELM_GH_PAGES }}" |