Skip to content

Update release-chart.yml #5

Update release-chart.yml

Update release-chart.yml #5

Workflow file for this run

name: Release Charts
permissions:
contents: write
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
mkdir -p qryn-cloud-helm
cp -r ./* ./qryn-cloud-helm/
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: '.'
env:
CR_TOKEN: "${{ github.token }}"