Merge pull request #272 from gabriel-farache/bump_OSL-1.35_K8S #185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |