Skip to content

Merge remote-tracking branch 'origin/main' into feat/add-ssv-node #79

Merge remote-tracking branch 'origin/main' into feat/add-ssv-node

Merge remote-tracking branch 'origin/main' into feat/add-ssv-node #79

Workflow file for this run

name: Helm Charts Release
<<<<<<< HEAD

Check failure on line 3 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 3
on:
push:
branches:
- "!*"
tags:
- "v*"
=======
on:
push:
branches:
- main
>>>>>>> origin/main
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
<<<<<<< HEAD
uses: actions/checkout@v3
=======
uses: actions/checkout@v4
>>>>>>> origin/main
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
<<<<<<< HEAD
- name: Install Helm
uses: azure/setup-helm@v3
- name: Helm Dependencies
run: |
for dir in $(ls -d charts/*); do
helm dependency update $dir;
done
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Publish Helm chart
uses: stefanprodan/[email protected]
with:
token: ${{ secrets.BOT_TOKEN }}
charts_dir: charts
charts_url: https://nethermindeth.github.io/helm-charts
repository: helm-charts
branch: gh-pages
target_dir: charts
index_dir: .
=======
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.12.1
- name: Helm Dependencies
run: |
for dir in charts/*; do
helm dependency update "$dir";
done
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add ethereum-helm-charts https://ethpandaops.github.io/ethereum-helm-charts
helm repo add prometheus-charts https://prometheus-community.github.io/helm-charts
helm repo add grafana https://grafana.github.io/helm-charts
helm repo add external-secrets https://charts.external-secrets.io
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" # The GitHub token of this repository
CR_GENERATE_RELEASE_NOTES: true
>>>>>>> origin/main