forked from mariadb-operator/mariadb-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (69 loc) · 1.99 KB
/
helm.yml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Helm
on:
push:
branches:
- main
paths:
- "deploy/charts/**"
pull_request:
paths:
- "deploy/charts/**"
env:
HELM_VERSION: "v3.10.2"
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Helm
uses: azure/setup-helm@v4
with:
version: ${{ env.HELM_VERSION }}
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: List changed
id: list-changed
run: |
changed=$(ct list-changed --config=.github/config/ct.yml)
if [[ -n "$changed" ]]; then
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Lint
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --config=.github/config/ct.yml
- name: Cluster
if: steps.list-changed.outputs.changed == 'true'
run: make cluster
- name: Test install
if: steps.list-changed.outputs.changed == 'true'
run: ct install --config=.github/config/ct.yml
release:
runs-on: ubuntu-latest
needs: lint-test
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v4
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GHA_TOKEN }}"
CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}"
CR_SKIP_EXISTING: true
with:
charts_dir: deploy/charts
charts_repo_url: https://mariadb-operator.github.io/mariadb-operator