fix(app): update ghcr.io/gethomepage/homepage docker tag to v0.10.6 #3126
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: "Charts: Release" | |
concurrency: helm-release-oci | |
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.9.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 | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Collect charts to release | |
uses: bjw-s/helm-charts-actions/collect-charts@a60dc77aa47162c2b425202233165404e6923a7f | |
id: collect-charts | |
with: | |
repoConfigFile: ./.ci/repo-config.yaml | |
overrideCharts: "[${{ inputs.charts }}]" | |
release-github-oci: | |
name: Release Application charts to GitHub Container Registry | |
uses: ./.github/workflows/charts-release-oci.yaml | |
needs: | |
- prepare | |
# - release-library-charts | |
with: | |
charts: "${{ needs.prepare.outputs.charts-to-release }}" | |
secrets: inherit | |