ci(stability): update values.yaml and Chart.yaml with latest tags and… #302
This file contains 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: Main Helm Chart | |
on: | |
push: | |
branches: | |
- main | |
- 'helm-testing/**' | |
- '!helm-testing/**-staging**' | |
paths: | |
- 'chart/**' | |
jobs: | |
main-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: cachix/install-nix-action@v22 | |
- 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] | |
with: | |
token: ${{ secrets.OPENEBS_CI_GITHUB }} | |
charts_dir: . | |
charts_url: https://openebs.github.io/mayastor-chart-donotuse | |
owner: openebs | |
repository: mayastor-chart-donotuse | |
branch: gh-pages |