Fix chart-releaser action
This commit is contained in:
parent
1da8a3a3d2
commit
15c2d59e0f
2 changed files with 7 additions and 2 deletions
7
.github/workflows/helm.yaml
vendored
7
.github/workflows/helm.yaml
vendored
|
|
@ -42,6 +42,9 @@ jobs:
|
|||
|
||||
- name: Checkout master
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
# Fetch entire history. Required for chart-releaser; see https://github.com/helm/chart-releaser-action/issues/13#issuecomment-602063896
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup
|
||||
shell: bash
|
||||
|
|
@ -50,6 +53,8 @@ jobs:
|
|||
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
|
||||
- name: Run chart-releaser
|
||||
uses: helm/chart-releaser-action@v1.0.0
|
||||
uses: helm/chart-releaser-action@v1.1.0
|
||||
env:
|
||||
CR_TOKEN: "${{ secrets.PERSONAL_TOKEN }}"
|
||||
with:
|
||||
charts_dir: charts
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue