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

gatus: add config endpoint example #1

gatus: add config endpoint example

gatus: add config endpoint example #1

Workflow file for this run

name: Release Charts
permissions: {}
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write # to push chart release and create a release (helm/chart-releaser-action)
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: Setup helm
uses: azure/setup-helm@v3
with: { version: v3.13.2 }
- name: Add dependency chart repos
run: |
helm repo add minicloudlabs https://minicloudlabs.github.io/helm-charts
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: "true"