Skip to content

Commit

Permalink
Merge pull request #4 from langchain-ai/infra/add-semantic-version
Browse files Browse the repository at this point in the history
Setup chart releaser action
  • Loading branch information
langchain-infra authored Oct 17, 2023
2 parents cb58d4d + 614ac72 commit 7ec88fc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release_charts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Charts

on:
push:
branches:
- main

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: Install Helm
uses: azure/setup-helm@v3

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

0 comments on commit 7ec88fc

Please sign in to comment.