Skip to content

Workflow file for this run

name: Helm Release Workflow
on: push
# push:
# branches:
# - v2
# workflow_dispatch:
jobs:
helm-release:
runs-on: ubuntu-latest
name: Release Helm Chart
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config --global user.name "elimoshkovich"
git config --global user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v1
- name: Run User chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.PAGES }}"
with:
charts_dir: ./helm
packages_with_index: true
pages_branch: PER-9197-pdp-deployment-helm
mark_as_latest: true