From ed23fab7d9262410eed81ef5df346c2ecd07e995 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 14 Nov 2022 19:04:42 +0530 Subject: [PATCH] fix(release): push the tag directly --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84e7c2cc..08fa6605 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,8 +67,8 @@ jobs: VERSION="$(tail -n1 android/version.properties | cut -d = -f 2)" git tag "v${VERSION}" -F distribution/whatsnew/whatsnew-en-GB - # Push everything to GitHub - git push origin --all + # Push the tag to GitHub + git push origin "v${VERSION}" # Create a GitHub release gh release create "v${VERSION}" -F distribution/whatsnew/whatsnew-en-GB --title "v${VERSION}" ./android/apk/*.apk ./android/bundle/*.aab