Skip to content

Commit da823e5

Browse files
authored
Merge pull request #1 from sanjaykkr/master
Add cache disable option for node-local-dns-chart
2 parents e364275 + b43ee25 commit da823e5

4 files changed

Lines changed: 11066 additions & 9231 deletions

File tree

.github/workflows/main.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release:
10+
permissions:
11+
contents: write # to push chart release and create a release (helm/chart-releaser-action)
12+
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Configure Git
21+
run: |
22+
git config user.name "$GITHUB_ACTOR"
23+
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
24+
25+
- name: Set up Helm
26+
uses: azure/setup-helm@v3.5
27+
with:
28+
version: v3.9.2
29+
30+
- name: Run chart-releaser
31+
uses: helm/chart-releaser-action@v1.7.0
32+
with:
33+
charts_dir: stable
34+
pages_branch: master
35+
env:
36+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)