fix(all): properly add CA cert mount to all charts #74
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 Charts | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "charts/**" | |
| - ".github/workflows/release-charts.yaml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install Helm | |
| uses: azure/setup-helm@v5 | |
| - name: Package charts | |
| run: | | |
| mkdir -p public | |
| for chart in charts/*/; do | |
| helm package "$chart" -d public | |
| done | |
| helm repo index public | |
| cp landingpage/index.html public/ | |
| cp landingpage/style.css public/ | |
| cp landingpage/app.js public/ | |
| cp landingpage/artifacthub-repo.yml public/ | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: public | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |