We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2be524 commit 7a7098bCopy full SHA for 7a7098b
entrypoint.sh
@@ -82,14 +82,14 @@ else
82
git commit -m "$INPUT_COMMIT_MESSAGE"
83
git push -fq origin $TARGET_BRANCH > /dev/null
84
# push is OK?
85
- result="Deploy succeeded"
+ result="🎉 Deploy succeeded"
86
if [ $? != 0 ]
87
then
88
- result="Deploy failed"
+ result="❌ Deploy failed"
89
fi
90
91
92
# Set output and summary
93
echo $result
94
echo "result=$result" >> $GITHUB_OUTPUT
95
-echo $result >> $GITHUB_STEP_SUMMARY
+echo "$result ($BUILD_DIR -> $GITHUB_REPOSITORY/$TARGET_BRANCH)" >> $GITHUB_STEP_SUMMARY
0 commit comments