This repository was archived by the owner on Mar 26, 2026. It is now read-only.
feature: Implement automatic decoding of Secret fields #82
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 | |
| on: | |
| workflow_call: | |
| workflow_dispatch: | |
| push: | |
| paths-ignore: | |
| - '.github/workflows/**' | |
| - 'test/**' | |
| branches: | |
| - 'master' | |
| tags: | |
| - '*' | |
| jobs: | |
| chart-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4 | |
| - name: Build chart | |
| run: | | |
| make chart | |
| - name: Set git config | |
| run: | | |
| git config --global user.email "l7mp.info@gmail.com" | |
| git config --global user.name "BotL7mp" | |
| - name: Checkout gh-pages branch | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.WEB_PAT_TOKEN }} | |
| path: gh-pages | |
| repository: l7mp/dcontroller | |
| ref: gh-pages | |
| - name: Copy build artifacts | |
| run: | | |
| cd gh-pages | |
| cp -r ../chart/repo/* . | |
| git add . | |
| git commit -m "Update helm charts" | |
| git push origin gh-pages |