-
Notifications
You must be signed in to change notification settings - Fork 8
37 lines (35 loc) · 920 Bytes
/
helm.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
name: Publish Helm
# This workflow builds the 'main' helm
# That is, any helm chart change that gets to main is immediately uploaded to the
# chart repo (that is to say it is released without further ado)
env: {}
on:
push:
branches:
- "main"
paths:
- "charts/substra-frontend/**"
pull_request:
branches:
- "main"
paths:
- "charts/substra-frontend/**"
workflow_dispatch:
inputs:
publish-alpha:
description: |
Publish alpha chart. Chart version must be X.Y.Z-alpha.N.
type: boolean
required: false
default: false
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
helm:
name: Helm
uses: substra/substra-gha-workflows/.github/workflows/helm.yml@main
with:
helm-repositories: ''
publish-alpha: ${{ inputs.publish-alpha == true }}
secrets: inherit