From bc7e7023813ffefa37ad0abd337be9a93887e1f8 Mon Sep 17 00:00:00 2001 From: Steve Hipwell Date: Wed, 7 Feb 2024 15:37:29 +0000 Subject: [PATCH] fix(chart): Fixed incorrect changelog version lookup Signed-off-by: Steve Hipwell --- .github/workflows/lint-test-chart.yaml | 2 +- .github/workflows/release-chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test-chart.yaml b/.github/workflows/lint-test-chart.yaml index 27fd2880c..fcf85c914 100644 --- a/.github/workflows/lint-test-chart.yaml +++ b/.github/workflows/lint-test-chart.yaml @@ -57,7 +57,7 @@ jobs: uses: mindsers/changelog-reader-action@b97ce03a10d9bdbb07beb491c76a5a01d78cd3ef # v2.2.2 with: path: charts/metrics-server/CHANGELOG.md - version: ${{ steps.chart_version.outputs.version }} + version: ${{ steps.chart_version.outputs.result }} - name: Set-up Artifact Hub CLI if: steps.changes.outputs.changed == 'true' diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index 34cefd777..414c438fd 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -71,7 +71,7 @@ jobs: uses: mindsers/changelog-reader-action@b97ce03a10d9bdbb07beb491c76a5a01d78cd3ef # v2.2.2 with: path: charts/metrics-server/CHANGELOG.md - version: ${{ steps.chart_version.outputs.version }} + version: ${{ steps.chart_version.outputs.result }} - name: Create release notes if: steps.check_can_release.outputs.continue == 'true'