Skip to content

core2 2.8.2 release (#65) #51

core2 2.8.2 release (#65)

core2 2.8.2 release (#65) #51

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
env:
GITHUB_USER: seldondev
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Configure Git
run: |
git config --global user.name "${GITHUB_USER}"
git config --global user.email "${GITHUB_USER}@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v1
with:
version: v3.8.1
# Needed for scv2 all-in one : https://github.com/helm/chart-releaser-action/issues/74
- name: Add helm repos
run: |
helm repo add kafka https://charts.bitnami.com/bitnami
helm repo add prometheus https://prometheus-community.github.io/helm-charts
helm repo add grafana https://grafana.github.io/helm-charts
helm repo add opentelemetry-collector https://open-telemetry.github.io/opentelemetry-helm-charts
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
charts_dir: helm-charts