Skip to content

Commit

Permalink
feat(app-template): Release version 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bjw-s committed Feb 11, 2025
1 parent b93c419 commit a0825cb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/charts-release-steps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ on:
type: string

jobs:
report-changes:
name: Report changes
runs-on: ubuntu-22.04
steps:
- name: Report changes
run: |
echo "Charts to package: ${{ inputs.charts }}"
package-charts:
name: Package charts
runs-on: ubuntu-22.04
Expand Down
13 changes: 3 additions & 10 deletions .github/workflows/charts-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
outputs:
repoConfiguration: ${{ steps.repo-config.outputs.config }}
libraryChartsToRelease: ${{ steps.changed-library-charts.outputs.all_changed_files }}
applicationChartsToRelease: ${{ steps.changed-charts.outputs.all_changed_files }}
otherChartsToRelease: ${{ steps.changed-charts.outputs.all_changed_files }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -75,21 +75,14 @@ jobs:
needs:
- prepare
- release-library-charts
if: >-
${{
always() &&
needs.prepare.outputs.applicationChartsToRelease != '[]' &&
(
contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
)
}}
if: ${{ needs.prepare.outputs.otherChartsToRelease != '[]' }}
uses: ./.github/workflows/charts-release-steps.yaml
permissions:
pages: write
id-token: write
contents: write
packages: write
with:
charts: ${{ needs.prepare.outputs.applicationChartsToRelease }}
charts: ${{ needs.prepare.outputs.otherChartsToRelease }}
excludedChartsRelease: ${{ toJSON(fromJSON(needs.prepare.outputs.repoConfiguration).excluded-charts-release) }}
ghPagesBranch: gh-pages
Empty file added charts/other/app-template/dummy
Empty file.

0 comments on commit a0825cb

Please sign in to comment.