Skip to content

use normal github config #76

use normal github config

use normal github config #76

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
- fix/VELO-72-*
permissions:
contents: write
packages: write
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 "${{ github.actor }}@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.15.2
- name: Helm Deps
run: |
helm repo add charts https://helm-charts.velocity.tech
- name: Run chart-releaser
uses: helm/[email protected]
with:
pages_branch: gh-pages-v2
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"