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 e4b068f commit c6510e3Copy full SHA for c6510e3
.github/workflows/release.yml
@@ -54,15 +54,19 @@ jobs:
54
# env:
55
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56
57
- - name: Set git config
+ - name: Set chart-releaser configuration
58
run: |
59
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
60
git config --global user.name "github-actions[bot]"
61
+ cat << EOF > chart-releaser-config.yaml
62
+ release-name-template: "v{{ .Version }}"
63
+ EOF
64
shell: bash
65
66
- name: Run chart-releaser
67
uses: helm/chart-releaser-action@v1.7.0
68
with:
69
charts_dir: helm
70
+ config: chart-releaser-config.yaml
71
env:
72
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments