Skip to content

Add chart v1.5.0 link and update OWNERS (#90) #81

Add chart v1.5.0 link and update OWNERS (#90)

Add chart v1.5.0 link and update OWNERS (#90) #81

Workflow file for this run

---
name: Chart Publish
on:
push:
branches:
- main
- rewrite-build
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v1
- name: Configure Git
run: |
git config user.name "gh-actions"
git config user.email "[email protected]"
# This is required to consider the old Circle-CI Index and to stay compatible with all the old releases.
#- name: Fetch current Chart Index
# run: |
# git checkout origin/gh-pages index.yaml
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
config: "./.github/configs/cr.yaml"
env:
CR_TOKEN: "${{ secrets.GH_TOKEN }}"