From 771796620002b53e4f58f39ce5d1953baa869922 Mon Sep 17 00:00:00 2001 From: Filipe Freire Date: Fri, 17 May 2024 16:24:57 +0100 Subject: [PATCH] fix: push also to origin --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fc7dffc4..4b98f66e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,9 @@ jobs: git remote -v - name: Merge version commit into master - run: git push origin v${{ env.TAG }} + run: | + git push origin v${{ env.TAG }} + git push origin master - name: Create Tag and Release uses: ncipollo/release-action@v1