We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f72caf commit a103c7eCopy full SHA for a103c7e
.github/workflows/release.yaml
@@ -4,20 +4,27 @@ on:
4
push:
5
branches:
6
- main
7
- paths:
8
- - 'charts/*'
9
10
jobs:
11
release:
12
runs-on: ubuntu-latest
13
steps:
14
- name: Checkout
15
- uses: actions/checkout@v1
+ uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
16
+
17
- name: Configure Git
18
run: |
19
git config user.name "$GITHUB_ACTOR"
20
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
21
22
+ - name: Install Helm
23
+ uses: azure/setup-helm@v1
24
25
+ version: v3.4.0
26
27
- name: Run chart-releaser
- uses: helm/chart-releaser-action@main
28
+ uses: helm/chart-releaser-action@v1.1.1
29
env:
- CR_TOKEN: '${{ secrets.CR_TOKEN }}'
30
+ CR_TOKEN: '${{ secrets.CR_TOKEN }}'
0 commit comments