ci(stability): update values.yaml and Chart.yaml with latest tags and… #600
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 Testing Chart | |
| on: | |
| push: | |
| branches: | |
| - 'helm-testing/**' | |
| - '!helm-testing/**-staging**' | |
| paths: | |
| - 'chart/**' | |
| - '.github/**' | |
| jobs: | |
| helm-testing-chart: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: cachix/[email protected] | |
| - name: Pre-populate nix-shell | |
| run: | | |
| export NIX_PATH=nixpkgs=$(jq '.nixpkgs.url' nix/sources.json -r) | |
| echo "NIX_PATH=$NIX_PATH" >> $GITHUB_ENV | |
| nix-shell --pure --run "echo" ./scripts/helm/shell.nix | |
| - name: Update chart | |
| run: | | |
| # Update logLevel to 'debug' | |
| sed -Ei "s~(logLevel: .*)~logLevel: debug~" chart/values.yaml | |
| # Update repo url/name across all chart files | |
| sed -i "s/mayastor-extensions/mayastor-chart-donotuse/g" chart/*.* | |
| - name: Check if the chart is publishable | |
| run: | | |
| branch="${{ github.ref_name }}" | |
| nix-shell --pure --run "./scripts/helm/publish-chart-yaml.sh --check-chart "$branch"" ./scripts/helm/shell.nix | |
| - name: Publish Mayastor Helm chart | |
| uses: stefanprodan/[email protected] | |
| env: | |
| TMPDIR: /tmp | |
| with: | |
| token: ${{ secrets.ORG_CI_GITHUB }} | |
| charts_dir: . | |
| repository: mayastor-chart-donotuse | |
| branch: gh-pages |