Skip to content

Commit

Permalink
ci(cr): add chart releaser action
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrrha committed Sep 17, 2023
1 parent cd343c9 commit ded9530
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion charts/calcom/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: calcom
description: A Helm chart for Kubernetes
type: application
version: 0.1.0
version: 0.1.1
appVersion: v3.3.1
sources:
- https://github.com/Pyrrha/calcom-helm/tree/main

0 comments on commit ded9530

Please sign in to comment.