Skip to content

Commit a103c7e

Browse files
author
James Rhoat
committed
updating action
1 parent 5f72caf commit a103c7e

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/release.yaml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,27 @@ on:
44
push:
55
branches:
66
- main
7-
paths:
8-
- 'charts/*'
97

108
jobs:
119
release:
1210
runs-on: ubuntu-latest
1311
steps:
1412
- name: Checkout
15-
uses: actions/checkout@v1
13+
uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 0
16+
1617
- name: Configure Git
1718
run: |
1819
git config user.name "$GITHUB_ACTOR"
1920
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
21+
22+
- name: Install Helm
23+
uses: azure/setup-helm@v1
24+
with:
25+
version: v3.4.0
26+
2027
- name: Run chart-releaser
21-
uses: helm/chart-releaser-action@main
28+
uses: helm/chart-releaser-action@v1.1.1
2229
env:
23-
CR_TOKEN: '${{ secrets.CR_TOKEN }}'
30+
CR_TOKEN: '${{ secrets.CR_TOKEN }}'

0 commit comments

Comments
 (0)