feat(node): new version v0.20.0-arabica update values (#71) #64
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: Release Charts | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
# common-celestia-node | |
release-common-celestia-node: | |
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 "[email protected]" | |
- name: Run chart-releaser for common-celestia-node | |
uses: helm/[email protected] | |
with: | |
charts_dir: "common-charts" | |
packages_with_index: "true" | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
# celestia-node | |
release-celestia-node: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
needs: release-common-celestia-node | |
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 "[email protected]" | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Add Helm Repositories | |
run: | | |
helm repo add bitnami https://charts.bitnami.com/bitnami | |
helm repo add celestiaorg https://celestiaorg.github.io/helm-charts | |
helm repo update | |
- name: Update Helm Dependencies for celestia-node | |
run: | | |
helm dependency update charts/celestia-node | |
- name: Run chart-releaser for celestia-node | |
uses: helm/[email protected] | |
with: | |
charts_dir: "charts" | |
packages_with_index: "true" | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |