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 2cf94fa commit aacae9fCopy full SHA for aacae9f
.github/workflows/pages.yaml
@@ -0,0 +1,34 @@
1
+name: Release Helm Chart
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - '.github/workflows/pages.yaml'
9
+ - 'charts/**'
10
11
+jobs:
12
+ release:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v3
17
18
+ - name: Set up Helm
19
+ uses: azure/setup-helm@v3
20
+ with:
21
+ version: v3.13.3
22
23
+ - name: Create Helm index
24
+ run: |
25
+ mkdir -p ./gh-pages
26
+ helm package charts/* --destination ./gh-pages
27
+ helm repo index ./gh-pages --url https://es6kr.github.io/nginx-cert-issuers
28
29
+ - name: Deploy to GitHub Pages
30
+ uses: peaceiris/actions-gh-pages@v3
31
32
+ github_token: ${{ secrets.GITHUB_TOKEN }}
33
+ publish_dir: ./gh-pages
34
+ publish_branch: gh-pages
0 commit comments