Skip to content

feet: add quote for keeper node selector (#74) #77

feet: add quote for keeper node selector (#74)

feet: add quote for keeper node selector (#74) #77

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths-ignore:
- '**/README.md'
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Add Operator Chart Repo
run: |
helm repo add altinity-operator https://docs.altinity.com/clickhouse-operator
helm repo add altinity https://helm.altinity.com/
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: charts
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"