We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa5af2d commit 4267c0dCopy full SHA for 4267c0d
.github/workflows/DataMiner+CI+Automation.yml
@@ -40,7 +40,7 @@ jobs:
40
echo "changelog_file=$FILE" >> $GITHUB_OUTPUT
41
exit 0
42
else
43
- echo "changelog_exists=false" >> $GITHUB_OUTPUT
+ 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."
44
exit 1
45
fi
46
@@ -53,12 +53,15 @@ jobs:
53
if [[ $REF_NAME =~ $RELEASE_REGEX ]]
54
then
55
echo "prerelease=false" >> $GITHUB_OUTPUT
56
+ echo "Release"
57
58
elif [[ $REF_NAME =~ $PRE_RELEASE_REGEX ]]
59
60
echo "prerelease=true" >> $GITHUB_OUTPUT
61
+ echo "Pre-Release"
62
63
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."
65
66
67
0 commit comments