Skip to content
This repository has been archived by the owner on Dec 15, 2024. It is now read-only.

Merge pull request #2 from small-hack/fix/postgresql-connections #3

Merge pull request #2 from small-hack/fix/postgresql-connections

Merge pull request #2 from small-hack/fix/postgresql-connections #3

name: Release
on:
push:
branches:
- main
paths:
- 'charts/**'
jobs:
release:
environment: helm-release
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
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@v3.5
id: helm-install
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Add dependency chart repos
run: |
helm dep update charts/matrix-sliding-sync
- name: Run chart-releaser
id: helm-release
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_GENERATE_RELEASE_NOTES: true