Skip to content

Commit

Permalink
Add helm publishing to release workflow (#23)
Browse files Browse the repository at this point in the history
Adds helm publishing to the release workflow

Signed-off-by: Tyler Auerbeck <tylerauerbeck@users.noreply.github.com>
Co-authored-by: Tyler Auerbeck <tylerauerbeck@users.noreply.github.com>
  • Loading branch information
tylerauerbeck and tylerauerbeck committed Jun 23, 2023
1 parent bd4973e commit 6afe8cc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ on:
- v**

jobs:
helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Publish Helm charts
uses: stefanprodan/helm-gh-pages@master
with:
token: ${{ secrets.RELEASEBOT_PAT }}
charts_dir: chart
charts_url: "https://infratographer.github.io/charts"
repository: "charts"
app_version: ${{ github.ref_name }}
chart_version: ${{ github.ref_name }}
branch: gh-pages

goreleaser:
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 6afe8cc

Please sign in to comment.