File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 51
51
52
52
echo "Release identifier is valid: ${release_identifier}"
53
53
echo "release-identifier=${release_identifier}" >> ${GITHUB_OUTPUT}
54
+ echo "Validated Input: ${release_identifier}" >> ${GITHUB_STEP_SUMMARY}
54
55
55
56
- name : Checkout Code
56
57
id : checkout_code
@@ -70,14 +71,16 @@ jobs:
70
71
git fetch --tags
71
72
72
73
if git rev-parse "$tag" >/dev/null 2>&1; then
73
- echo "Tag ' ${tag}' found."
74
+ echo "Tag ${tag} found in repo." >> ${GITHUB_STEP_SUMMARY}
74
75
else
75
- echo "Error: Tag ' ${tag}' does not exist."
76
+ echo "Error: Tag ${tag} does not exist in repo." >> ${GITHUB_STEP_SUMMARY}
76
77
exit 1
77
78
fi
78
79
79
80
- name : Git-Semver Setup Action
80
81
uses : DJ-BBot/setup-git-semver@91baf2ca207495aa35db3441038ddeae2b6904c7 # v1.0.2
81
82
82
83
- name : Create Release Notes with Markdown
83
- run : git-semver log --markdown "${{ steps.validate.outputs.release-identifier }}"
84
+ run : |
85
+ git-semver log --markdown "${{ steps.validate.outputs.release-identifier }}"
86
+ echo "Successfully created release notes!" >> ${GITHUB_STEP_SUMMARY}
You can’t perform that action at this time.
0 commit comments