-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (51 loc) · 1.69 KB
/
publish_chart.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Publish Helm Chart
run-name: "Publish Helm Chart ${{ github.ref_name }} by @${{ github.actor }}"
on:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- "charts/**"
jobs:
publish-helm-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Install Helm
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
with:
version: v3.13.0
- name: Run lint on Helm chart
run: |
set -e
cd charts/public-test
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency build
helm lint --values values.yaml .
cd -
# - name: Package helm chart
# run: |
# mkdir -p .cr-release-packages
# cd .cr-release-packages
# helm package --version ${{env.VERSION_NAME}} ../charts/public-test/
# cd -
- name: Configure Git user
run: |
git config --local user.email "github-actions@comet.com"
git config --local user.name "github-actions"
- name: Run chart-releaser
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
with:
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
# - name: Run chart-releaser
# uses: helm/chart-releaser-action@v1.6.0
# # with:
# # skip_packaging: true
# # skip_existing: true
# # packages_with_index: true
# env:
# CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"