From 2e63e3740be2aa6b80e3a771a5def4b72f202de4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Fri, 4 Feb 2022 20:40:52 +0100 Subject: [PATCH] ci: Fix composite action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs --- .github/actions/collect-changes/action.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/collect-changes/action.yaml b/.github/actions/collect-changes/action.yaml index 179097fd..c3833024 100644 --- a/.github/actions/collect-changes/action.yaml +++ b/.github/actions/collect-changes/action.yaml @@ -7,10 +7,10 @@ outputs: value: ${{ steps.filter.outputs.addedOrModified }} addedOrModifiedFiles: description: "A list of the files changed" - value: ${{ steps.filter.outputs.addedOrModified_files || "" }} + value: ${{ steps.filter.outputs.addedOrModified_files }} addedOrModifiedCharts: description: "A list of the charts changed" - value: ${{ steps.filter-charts.outputs.addedOrModified || "" }} + value: ${{ steps.filter-charts.outputs.addedOrModified }} runs: using: "composite" @@ -28,6 +28,7 @@ runs: if: | steps.filter.outputs.addedOrModified == 'true' id: filter-charts + shell: bash run: | CHARTS=() PATHS=(${{ steps.filter.outputs.addedOrModified_files }})