Skip to content

Merge pull request #272 from gabriel-farache/bump_OSL-1.35_K8S #185

Merge pull request #272 from gabriel-farache/bump_OSL-1.35_K8S

Merge pull request #272 from gabriel-farache/bump_OSL-1.35_K8S #185

Workflow file for this run

name: Release Orchestrator Charts
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "charts/**"
jobs:
release:
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 "[email protected]"
- name: Add dependencies
run: |
helm repo add postgresql-persistent https://sclorg.github.io/helm-charts
helm repo add backstage https://redhat-developer.github.io/rhdh-chart
helm repo add workflows https://parodos.dev/serverless-workflows-config
- name: Run chart-releaser
uses: masayag/chart-releaser-action@main
with:
config: chart-releaser.yaml
pages_index_path: docs/index.yaml
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"