Skip to content

docs: Update README.md (#9) #17

docs: Update README.md (#9)

docs: Update README.md (#9) #17

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
workflow_dispatch:
env:
helm: v3.16.2
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Turnstyle
uses: softprops/turnstyle@v2
with:
continue-after-seconds: 180
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: ${{ env.helm }}
- name: Add dependency chart repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add meilisearch https://meilisearch.github.io/meilisearch-kubernetes
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1
with:
charts_repo_url: https://monicahq.github.io/helm
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}