Fix chart-releaser action
This commit is contained in:
parent
451b5e45a5
commit
8bd6ada99e
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
|
- name: Checkout master
|
||||||
uses: actions/checkout@v2
|
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
|
- name: Setup
|
||||||
shell: bash
|
shell: bash
|
||||||
|
@ -50,6 +53,8 @@ jobs:
|
||||||
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||||
|
|
||||||
- name: Run chart-releaser
|
- name: Run chart-releaser
|
||||||
uses: helm/chart-releaser-action@v1.0.0
|
uses: helm/chart-releaser-action@v1.1.0
|
||||||
env:
|
env:
|
||||||
CR_TOKEN: "${{ secrets.PERSONAL_TOKEN }}"
|
CR_TOKEN: "${{ secrets.PERSONAL_TOKEN }}"
|
||||||
|
with:
|
||||||
|
charts_dir: charts
|
||||||
|
|
|
@ -21,4 +21,4 @@ annotations:
|
||||||
# List of changes for the release in artifacthub.io
|
# List of changes for the release in artifacthub.io
|
||||||
# https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx?modal=changelog
|
# https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx?modal=changelog
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- Fix 'maxmindLicenseKey' location in values.yaml
|
- Fix maxmindLicenseKey location in values.yaml
|
||||||
|
|
Loading…
Reference in a new issue