Release rapid v0.10.31 (#1434) #948
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: Publish Chart | |
on: | |
push: | |
branches: | |
- master | |
- cd-scaffolding | |
jobs: | |
publish: | |
name: Publish helm chart | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- uses: azure/setup-helm@v3 | |
- name: Add repos | |
run: | | |
helm repo add vmware https://vmware-tanzu.github.io/helm-charts | |
helm repo add radar https://radar-base.github.io/radar-helm-charts | |
helm repo add fluxcd-community https://fluxcd-community.github.io/helm-charts | |
helm repo add dashboard https://kubernetes.github.io/dashboard | |
- name: Run chart-releaser | |
id: release | |
uses: helm/[email protected] | |
with: | |
config: "./.github/configs/cr.yaml" | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |