Skip to content

feat: add odigos chart lib #1

feat: add odigos chart lib

feat: add odigos chart lib #1

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
# paths:
# - 'helm/odigos/Chart.yaml'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/[email protected]
with:
version: v3.4.0
- name: add repos
run: |

Check failure on line 30 in .github/workflows/helm-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/helm-release.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
helm repo add odigos https://odigos-io.github.io/odigos-charts
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: helm
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"