Piped-Kubernetes/.github/workflows/charts-release.yaml

51 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2023-03-02 00:50:17 +00:00
name: "Charts: Release"
concurrency: helm-release
on:
workflow_dispatch:
inputs:
charts:
description: >
Charts to release. Comma-separated string.
Defaults to releasing everything.
default: ""
required: false
push:
branches:
- main
paths:
- "charts/**"
env:
HELM_VERSION: 3.10.2
jobs:
prepare:
name: Prepare data required for release
runs-on: ubuntu-latest
outputs:
charts-to-release: ${{ steps.collect-charts.outputs.charts }}
steps:
- name: Checkout
2023-10-02 06:41:05 +00:00
uses: actions/checkout@v4
2023-03-02 00:50:17 +00:00
with:
fetch-depth: 0
- name: Collect charts to release
uses: bjw-s/helm-charts-actions/collect-charts@a8eaf6315b4231f659cc9986b06ffcf242158ca9
2023-03-02 00:50:17 +00:00
id: collect-charts
with:
repoConfigFile: ./.ci/repo-config.yaml
overrideCharts: "[${{ inputs.charts }}]"
release-github-pages:
name: Release Charts to GitHub pages
uses: ./.github/workflows/charts-release-ghpages.yaml
needs:
- prepare
with:
charts: "${{ needs.prepare.outputs.charts-to-release }}"
2023-10-02 06:41:05 +00:00
secrets: inherit