feat: statefulset support #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |