Skip to content

chore(deps): update helm release postgresql to v12.8.0 (#335) #157

chore(deps): update helm release postgresql to v12.8.0 (#335)

chore(deps): update helm release postgresql to v12.8.0 (#335) #157

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- charts/**
permissions:
contents: read
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-20.04
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: Install Helm
uses: azure/[email protected]
with:
version: v3.4.0
- name: Add repos
run: |
yq '.chart-repos' .github/ct.yaml | while read line ; do
repodef="${line##- }"
helm repo add "${repodef%%=*}" "${repodef##*=}"
done
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}