-
-
Notifications
You must be signed in to change notification settings - Fork 26
35 lines (28 loc) · 971 Bytes
/
chart-pipeline.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
name: Chart-Pipeline
on:
push:
paths: ["charts/**"]
workflow_dispatch:
jobs:
preparation:
uses: ./.github/workflows/chart-preparation.yml
linting:
needs: [preparation]
uses: ./.github/workflows/chart-linting.yml
kubeconform:
needs: [preparation, linting]
uses: ./.github/workflows/chart-kubeconform.yml
unit-testing:
needs: [preparation, linting, kubeconform]
uses: ./.github/workflows/chart-unittesting.yml
testing:
needs: [preparation, linting, kubeconform, unit-testing]
uses: ./.github/workflows/chart-testing.yml
releasing:
if: github.ref == 'refs/heads/main'
needs: [preparation, linting, kubeconform, unit-testing, testing]
uses: ./.github/workflows/chart-releasing.yml
secrets:
GPG_PRIVATE_KEY_BASE64: ${{ secrets.GPG_PRIVATE_KEY_BASE64 }}
GPG_PRIVATE_KEY_PASSPHRASE: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
GPG_PRIVATE_KEY_UID: ${{ secrets.GPG_PRIVATE_KEY_UID }}