Skip to content

Merge pull request #347 from Extrality/upstream-trow-registry #1

Merge pull request #347 from Extrality/upstream-trow-registry

Merge pull request #347 from Extrality/upstream-trow-registry #1

Workflow file for this run

name: Release Chart
on:
push:
branches:
- main
jobs:
release-helm:
runs-on: ubuntu-latest
permissions:
contents: write
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: Set up Helm
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"