Skip to content

.github/workflows/chart.yml #3

.github/workflows/chart.yml

.github/workflows/chart.yml #3

Workflow file for this run

on:
workflow_dispatch:
inputs:
ref:
type: string
required: true
default: 'master'
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ inputs.ref }}
- 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
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
pages_branch: master
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"