Skip to content

[milvus] Fix missing clusterDomain in config template (#135) #73

[milvus] Fix missing clusterDomain in config template (#135)

[milvus] Fix missing clusterDomain in config template (#135) #73

Workflow file for this run

name: Release Charts
# This workflow is triggered on pushes or pull request to the repository.
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
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: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0
- name: Add dependency chart repos
run: |
helm repo add apache https://pulsar.apache.org/charts
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add milvus https://zilliztech.github.io/milvus-helm
helm repo add bitnami-full-index https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.1.0
- name: Run chart-testing (lint)
run: ct lint --config ct.yaml
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.2.1
env:
CR_TOKEN: "${{ secrets.CR_TOKEN }}"