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 b923f2b commit 97b024dCopy full SHA for 97b024d
.github/workflows/release.yml
@@ -10,14 +10,20 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- name: Checkout
13
- uses: actions/checkout@v1
+ uses: actions/checkout@v2
14
+ with:
15
+ fetch-depth: 0
16
17
- name: Configure Git
18
run: |
19
git config user.name "$GITHUB_ACTOR"
20
git config user.email "[email protected]"
21
+ - name: Install Helm
22
+ uses: azure/setup-helm@v1
23
24
+ version: v3.4.0
25
26
- name: Run chart-releaser
- uses: helm/chart-releaser-action@v1.0.0
27
+ uses: helm/chart-releaser-action@v1.2.1
28
env:
- CR_TOKEN: "${{ secrets.CR_TOKEN }}"
29
+ CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments