From 88f734b149ad33012055c08e4479875d1177b38c Mon Sep 17 00:00:00 2001 From: Piergiorgio Lucidi Date: Tue, 26 Mar 2024 14:01:03 +0100 Subject: [PATCH] fix for the release candidate GitHub workflow (CONNECTORS-1754) --- .github/workflows/create-release-candidate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-release-candidate.yml b/.github/workflows/create-release-candidate.yml index 8449c6f0e4..0340b78536 100644 --- a/.github/workflows/create-release-candidate.yml +++ b/.github/workflows/create-release-candidate.yml @@ -69,9 +69,9 @@ jobs: - name: Create new release candidate branch run: | git branch ${{ steps.branchTag.outputs.tag }} - git checkout ${{ steps.branchTag.outputs.tag }} git push - + git checkout ${{ steps.branchTag.outputs.tag }} + #- name: Checkout the new branch ${{ steps.branchTag.outputs.tag }} # uses: actions/checkout@v4.1.1 # with: