More paving the way

This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2022-07-27 19:40:55 +02:00
parent 33f207c563
commit 4863146ad9
No known key found for this signature in database
GPG key ID: BC5E2BD907F9A8EC
62 changed files with 2761 additions and 13 deletions

View file

@ -18,8 +18,11 @@ outputs:
description: "Whether or not changes to charts have been detected"
value: ${{ steps.filter.outputs.chartsAddedOrModified }}
addedOrModifiedFiles:
description: "A list of the files changed"
description: "A list of the files that changed"
value: ${{ steps.filter.outputs.addedOrModified_files }}
addedOrModifiedChartFiles:
description: "A list of the chart files that changed"
value: ${{ steps.filter.outputs.chartsAddedOrModified_files }}
addedOrModifiedCharts:
description: "A list of the charts changed"
value: ${{ steps.changed-charts.outputs.addedOrModifiedCharts }}

View file

@ -55,7 +55,7 @@ jobs:
else
CHARTS=(${{ github.event.inputs.chart }})
fi
elif [ "${{ steps.collect-changes.outputs.chartsAddedOrModified }}" == "true" ]; then
elif [ "${{ steps.collect-changes.outputs.chartChangesDetected }}" == "true" ]; then
CHARTS=(${{ steps.collect-changes.outputs.addedOrModifiedCharts }})
fi
printf "::set-output name=charts::%s\n" "${CHARTS[*]}"