Skip to content

updated link to omc documentation #11

updated link to omc documentation

updated link to omc documentation #11

Workflow file for this run

name: Release charts
on:
push:
branches:
- main
jobs:
docs:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout ✅
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Helm docs 🤖
uses: losisin/[email protected]
with:
git-push: true
git-push-user-name: "${{ github.actor }}"
git-push-user-email: "${{ github.actor }}@users.noreply.github.com"
git-commit-message: "🧹 update chart documentation"
release:
if: ${{ always() }}
needs: [docs]
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout ✅
uses: actions/[email protected]
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: Install Helm ⎈
uses: azure/setup-helm@v4
- name: Chart releaser 🤖
uses: helm/[email protected]
with:
charts_dir: "./"
packages_with_index: true
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_PACKAGE_PATH: .deploy
- name: Merge to gh-pages 📖
uses: devmasx/[email protected]
with:
type: now
from_branch: main
target_branch: gh-pages
github_token: "${{ secrets.GITHUB_TOKEN }}"