Skip to content

Release Charts

Release Charts #10

Workflow file for this run

name: Release Charts
on:
workflow_dispatch:
# inputs:
# chart_name:
# description: 'Set chart name to release'
# required: true
# type: string
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
- name: Run chart-releaser
env:
# CR_OWNER: "${{ github.repository_owner }}"
# CR_GIT_REPO: helm-charts
# CR_PACKAGE_PATH: ".${{ github.event.inputs.chart_name }}"
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
# CR_GIT_BASE_URL: "https://api.github.com/"
# CR_GIT_UPLOAD_URL: "https://uploads.github.com/"
CR_SKIP_EXISTING: true
uses: helm/[email protected]