Skip to content

Commit

Permalink
Merge pull request #10 from mitre/chartreleaser
Browse files Browse the repository at this point in the history
Make chart releaser point at correct dir
  • Loading branch information
Amndeep7 authored Nov 7, 2023
2 parents 1fba765 + 4cd1aee commit 8dc810a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Release Charts

on:
push:
branches:
- main
workflow_dispatch:

jobs:
Expand All @@ -26,9 +29,13 @@ jobs:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
uses: azure/setup-helm@v3

- name: Change directories to where the charts are defined so the action can find the changed files properly
run: |
cd heimdall2
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: "${{ github.workspace }}"
charts_dir: "."
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 8dc810a

Please sign in to comment.