From 57b94bea49bdb27cf00559ab1807721cddae2433 Mon Sep 17 00:00:00 2001 From: Timofey Koolin Date: Tue, 13 Feb 2024 09:10:48 +0300 Subject: [PATCH] Push to main branch before create tag. For prevent situation when tag point to commit, which doesn't exist in main branch. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fb3f63aa4..61361f822 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -70,7 +70,7 @@ jobs: TAG="v$MAJOR.$MINOR.$PATCH"; fi; git tag $TAG - git push --tags && git push + git push && git push --tags CHANGELOG="$CHANGELOG Full Changelog: [$LAST_TAG...$TAG](https://github.com/ydb-platform/ydb-go-sdk/compare/$LAST_TAG...$TAG)"