Skip to content

enable jobs cleanup in helm chart #105

enable jobs cleanup in helm chart

enable jobs cleanup in helm chart #105

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- 'charts/**'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
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: Prepare docs
run: mkdir -p dist
- name: Converts Markdown to HTML
uses: jaywcjlove/[email protected]
with:
source: README.md
output: dist/index.html
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
keep_files: true
- name: Install Helm
uses: azure/setup-helm@v3
- name: Add helm dependencies
continue-on-error: true
run: |
helm repo add tinysystems https://tiny-systems.github.io/module
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_SKIP_EXISTING: true
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"