chore: release 0.50.0 (#343) #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |