Skip to content

MG-145 - Update chart/app version, README, and fix CI (#146) #1

MG-145 - Update chart/app version, README, and fix CI (#146)

MG-145 - Update chart/app version, README, and fix CI (#146) #1

Workflow file for this run

# Copyright (c) Magistrala
# SPDX-License-Identifier: Apache-2.0
name: Release Charts
on:
push:
branches:
- master
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
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@v4.2.0
with:
version: v3.15.4
- name: Add Dependencies
run: |
helm repo add stable https://charts.helm.sh/stable
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add jaegertracing https://jaegertracing.github.io/helm-charts
helm repo add hashicorp https://helm.releases.hashicorp.com
helm repo add nats https://nats-io.github.io/k8s/helm/charts/
helm repo update
- name: Update Helm dependencies
run: |
helm dependency update charts/magistrala
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.HELM_RELEASE_TOKEN }}"