File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release Charts
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches :
7+ - main
8+
9+ jobs :
10+ release :
11+ # depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
12+ # see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
13+ permissions :
14+ contents : write
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Checkout
18+ uses : actions/checkout@v4
19+ with :
20+ fetch-depth : 0
21+
22+ - name : Configure Git
23+ run : |
24+ git config user.name "$GITHUB_ACTOR"
25+ git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
26+
27+ - name : Run chart-releaser
28+ uses : helm/chart-releaser-action@v1.7.0
29+ env :
30+ CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
You can’t perform that action at this time.
0 commit comments