Skip to content

Merge pull request #561 from keerthibingi/v4.0.4.2 #123

Merge pull request #561 from keerthibingi/v4.0.4.2

Merge pull request #561 from keerthibingi/v4.0.4.2 #123

Workflow file for this run

name: Release Charts
on:
push:
branches:
- v4.0.4.2
paths:
- 'charts/oes/Chart.yaml'
- 'charts/oes/Chart.lock'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
run: |
curl -fsSLo get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"