From 39c06e78657f1ebd98951d399e501b782dc77111 Mon Sep 17 00:00:00 2001 From: Filipe Freire Date: Fri, 17 May 2024 15:31:35 +0100 Subject: [PATCH] fix: release push [INS-3853] --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 297c1373a..c56dcd0ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,11 +37,10 @@ jobs: - name: Create new package version run: npm version "${{ env.TAG }}" - - name: Tag the Repository + - name: Merge version commit into master run: | - git tag ${{ env.TAG }} remote_repo="https://${GITHUB_ACTOR}:${RELEASE_GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" - git push "${remote_repo}" --follow-tags + git push "${remote_repo}" env: RELEASE_GH_TOKEN: ${{ secrets.PAT_INSOMNIA_INFRA }}