Skip to content

Commit

Permalink
use chart-releaser to create tugger helm chart repo in github pages (#73
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kd7lxl authored Jun 9, 2021
1 parent 4cf2979 commit 4748d34
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/tag.yaml → .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create Tag
name: Release
on:
push:
branches:
Expand All @@ -25,3 +25,22 @@ jobs:
set -x
git fetch --tags https://github.com/${{ env.upstream }}.git
git push --tags
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
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
charts_dir: chart

0 comments on commit 4748d34

Please sign in to comment.