Skip to content

feat: statefulset support #6

feat: statefulset support

feat: statefulset support #6

Workflow file for this run

name: Release Chart
on:
push:
branches:
- main
# When the versions in Chart.yaml change, this will publish a new Chart via a tag
# which will trigger docker.yaml to publish the docker image.
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.MY_PAT }}
- name: Configure Git
run: |
git config user.name "machine424"
git config user.email "ayoubmrini424@gmail.com"
- name: Install Helm
uses: azure/setup-helm@v3
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.1
with:
charts_dir: helm-chart
env:
CR_TOKEN: "${{ secrets.MY_PAT }}"