Merge pull request #4 from intergral/v120 #2
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: Update Index | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '**.tgz' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: Helm Installation | |
uses: azure/setup-helm@v1.1 | |
with: | |
version: v3.7.0 | |
- name: Update Index | |
run: | | |
cd releases | |
helm repo index . | |
git config --global user.email "external@intergral.com" | |
git config --global user.name "Intergral" | |
git add index.yaml | |
git commit -m "Update chart index" | |
git push |