Skip to content

Commit 4267c0d

Browse files
committed
release commit
1 parent aa5af2d commit 4267c0d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/DataMiner+CI+Automation.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
echo "changelog_file=$FILE" >> $GITHUB_OUTPUT
4141
exit 0
4242
else
43-
echo "changelog_exists=false" >> $GITHUB_OUTPUT
43+
echo "There is no changelog found for tag $FILE. Please add a CHANGELOG_$FILE.md file with the changes for this version in the Documentation folder."
4444
exit 1
4545
fi
4646
@@ -53,12 +53,15 @@ jobs:
5353
if [[ $REF_NAME =~ $RELEASE_REGEX ]]
5454
then
5555
echo "prerelease=false" >> $GITHUB_OUTPUT
56+
echo "Release"
5657
exit 0
5758
elif [[ $REF_NAME =~ $PRE_RELEASE_REGEX ]]
5859
then
5960
echo "prerelease=true" >> $GITHUB_OUTPUT
61+
echo "Pre-Release"
6062
exit 0
6163
else
64+
echo "Tag is in the incorrect format. Should be 0.0.0.0 for a release or 0.0.0.0-someprereleasetag for a pre-release."
6265
exit 1
6366
fi
6467

0 commit comments

Comments
 (0)