Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions .github/scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,9 @@ git push --tags && git push
CHANGELOG="$CHANGELOG

Full Changelog: [$LAST_TAG...$TAG](https://github.com/ydb-platform/ydb-dotnet-sdk/compare/$LAST_TAG...$TAG)"
if [ "$RELEASE_CANDIDATE" = true ]
then
gh release create -d $TAG -t "$TAG" --notes "$CHANGELOG"
else
VERSION=$MAJOR.$MINOR.$PATCH
cd src
dotnet pack -c Release -o out /p:Version=$VERSION
gh release create $TAG -t "$TAG" --notes "$CHANGELOG"
dotnet nuget push out/Ydb.Sdk.$VERSION.nupkg --skip-duplicate --api-key $NUGET_TOKEN --source https://api.nuget.org/v3/index.json
fi;

VERSION=$TAG
cd src
dotnet pack -c Release -o out /p:Version=$VERSION
gh release create $TAG -t "$TAG" --notes "$CHANGELOG"
dotnet nuget push out/Ydb.Sdk.$VERSION.nupkg --skip-duplicate --api-key $NUGET_TOKEN --source https://api.nuget.org/v3/index.json
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- Topic Writer release candidate
- Fixed: grpc requests go via proxy on Grpc.NET.Client >= 2.44

## v0.8.0
- Fixed bug on commit with fail, no set failed flag for rollback invocation
- Supported UUID (Guid)
Expand Down
Loading