Skip to content

Commit

Permalink
Add workflow for releasing Everest chart
Browse files Browse the repository at this point in the history
Signed-off-by: Mayank Shah <[email protected]>
  • Loading branch information
mayankshah1607 committed Oct 29, 2024
1 parent 28bf9f2 commit 49dbde5
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/everest-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Everest Chart Release
on:
workflow_dispatch:
inputs:
version:
description: "Everest version"
required: true
jobs:
release:
env:
VERSION: ${{ github.event.inputs.version }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
sparse-checkout: |
charts/everest
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Prepare release
run: |
cd charts/everest
make release
- name: Install Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0

- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 49dbde5

Please sign in to comment.