Skip to content

Commit c0d417f

Browse files
committed
Add release GitHub action
1 parent 22a6158 commit c0d417f

20 files changed

+30
-0
lines changed

Diff for: .github/workflows/release.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Release Helm Chart
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
release:
8+
permissions:
9+
contents: write
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: "Checkout code"
13+
uses: actions/checkout@v4
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+
22+
- name: "Install Helm"
23+
uses: azure/setup-helm@v4
24+
env:
25+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
26+
27+
- name: "Run chart-releaser"
28+
uses: helm/[email protected]
29+
env:
30+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
File renamed without changes.

Diff for: Chart.yaml renamed to charts/larakube/Chart.yaml

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)