Skip to content

Commit

Permalink
Merge pull request #760 from bcgov/feature/helm-chart-releaser
Browse files Browse the repository at this point in the history
Create Helm Chart Repo. Publish helm chart on new tag
  • Loading branch information
esune authored Aug 16, 2023
2 parents fdb2d3e + 69457e7 commit b52c35e
Showing 1 changed file with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update Assets
name: Release Assets

on:
push:
Expand Down Expand Up @@ -59,3 +59,24 @@ jobs:
registry: ghcr.io
registry_username: ${{ github.repository_owner}}
registry_password: ${{ secrets.GITHUB_TOKEN }}

helm_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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit b52c35e

Please sign in to comment.