Skip to content

Commit

Permalink
Add helm release automation
Browse files Browse the repository at this point in the history
  • Loading branch information
Teebor-Choka committed Aug 16, 2022
1 parent cfcf152 commit 7a977b6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---

name: release helm chart
on:
push:
tags: 'v[0-9]+.[0-9]+.*[0-9]*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: publish Helm charts
uses: stefanprodan/helm-gh-pages@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
target_dir: ./deploy/godaddy-webhook
linting: off

0 comments on commit 7a977b6

Please sign in to comment.