try re-adding rpcEndpoints #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Helm Charts Release | |
on: | |
push: | |
branches: | |
- "!*" | |
tags: | |
- "v*" | |
jobs: | |
release: | |
permissions: | |
contents: write | |
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: 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: . |