Skip to content

update services to include metrics and health (#206) #133

update services to include metrics and health (#206)

update services to include metrics and health (#206) #133

Workflow file for this run

name: release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
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: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.7.0
- name: Add repo dependencies
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add ethpandaops https://ethpandaops.github.io/ethereum-helm-charts
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"