error message rework

This commit is contained in:
Kwitsch 2024-04-12 17:08:27 +00:00
parent 7b3a28e762
commit fc4130dd8f
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ jobs:
[[ "${{ inputs.goos }}" == "darwin" && "${{ inputs.goarch }}" == "arm" ]]; then
echo "## Unsupported input" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "Combination goos=${{ inputs.goarch }} goarch=${{ inputs.goarch }} is not supported" >> $GITHUB_STEP_SUMMARY
echo "Combination not supported: ">> $GITHUB_STEP_SUMMARY
echo " - goos=${{ inputs.goos }}" >> $GITHUB_STEP_SUMMARY
echo " - goarch=${{ inputs.goarch }}" >> $GITHUB_STEP_SUMMARY
exit 1
fi