File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,10 @@ jobs:
3939 echo "CHANGELOG empty"
4040 exit 1;
4141 fi;
42- echo "CHANGELOG=$CHANGELOG"
4342 MAJOR=$(cat $VERSION_FILE | grep VersionMajor | sed -e 's/^.*\ \(=\ \)*\(\"\)*\([0-9]*\)\(\"\)*.*/\3/g');
4443 MINOR=$(cat $VERSION_FILE | grep VersionMinor | sed -e 's/^.*\ \(=\ \)*\(\"\)*\([0-9]*\)\(\"\)*.*/\3/g');
4544 PATCH=$(cat $VERSION_FILE | grep VersionPatch | sed -e 's/^.*\ \(=\ \)*\(\"\)*\([0-9]*\)\(\"\)*.*/\3/g');
45+ LAST_TAG="v$MAJOR.$MINOR.$PATCH";
4646 if [ "$VERSION_CHANGE" = "MINOR" ]
4747 then
4848 MINOR=$((MINOR+1));
7171 fi;
7272 git tag $TAG
7373 git push --tags && git push
74+ CHANGELOG="$CHANGELOG
75+
76+ Full Changelog: [$LAST_TAG...$TAG](https://github.com/ydb-platform/ydb-go-sdk/compare/$LAST_TAG...$TAG)"
7477 if [ "$RELEASE_CANDIDATE" = true ]
7578 then
7679 gh release create -d $TAG -t "$TAG" --notes "$CHANGELOG"
Original file line number Diff line number Diff line change 1+ * Added full changelog link to github release description
2+
13## v3.16.11
24* Added stacktrace to errors with issues
35
You can’t perform that action at this time.
0 commit comments