add release

This commit is contained in:
2025-09-08 14:20:35 +02:00
parent 2281556eed
commit 4b1781301f

View File

@@ -71,6 +71,21 @@ jobs:
echo "Extracted application version: $VERSION"
echo "change=$CHANGE" >> $GITHUB_OUTPUT
echo "Has changes to release? $CHANGE"
- name: Debug outputs
run: |
echo "Change output: ${{ steps.project.outputs.change }}"
echo "Fail input: ${{ inputs.FAIL_FOR_NO_CHANGES }}"
if [ "${{ steps.project.outputs.change }}" = "false" ]; then
echo "✅ steps.project.outputs.change is 'false'"
else
echo "❌ steps.project.outputs.change is NOT 'false'"
fi
if [ "${{ inputs.FAIL_FOR_NO_CHANGES }}" = "true" ]; then
echo "✅ inputs.FAIL_FOR_NO_CHANGES is 'true'"
else
echo "❌ inputs.FAIL_FOR_NO_CHANGES is NOT 'true'"
fi
- name: Fail workflow if there are no changes
if: steps.project.outputs.change == 'false' && inputs.FAIL_FOR_NO_CHANGES == true
run: |