Skip to content

feat: dedicated tolerations configuration for cronjobs (#76) #66

feat: dedicated tolerations configuration for cronjobs (#76)

feat: dedicated tolerations configuration for cronjobs (#76) #66

Workflow file for this run

name: Release helm charts
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- uses: azure/setup-helm@v3
with:
version: v3.13.2
- name: Helm deps
run: |
for dir in $(ls -d charts/*/); do
helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
done
- uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
charts_dir: charts