Skip to content

Commit

Permalink
chore: default chart releaser added
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterTimn authored Mar 24, 2022
1 parent 1fbed29 commit 9c9685f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-readme-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
if: github.ref == 'refs/heads/main'
run: |
cd charts
git config --global user.name 'Readme Generator'
git config --global user.email '[email protected]'
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git add community-solid-server/README.md
git commit -am "docs: Update chart parameters readme"
git push
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release Charts

on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
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@v1
with:
version: v3.7.1

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

0 comments on commit 9c9685f

Please sign in to comment.