Skip to content

Commit

Permalink
fix: proper mention to PR_BRANCH (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
tchataigner authored Jun 24, 2024
1 parent f941d84 commit cae83d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
VERSION=${{ inputs.version }}
BASE_BRANCH="release/v$BASE_VERSION_SHORT"
PR_BRANCH="${{ inputs.type }}/v${{ inputs.version }}"
git checkout ${{ env.PR_BRANCH }}
git checkout $PR_BRANCH
else
VERSION=$BASE_VERSION
BASE_BRANCH="dev"
PR_BRANCH="release/v$BASE_VERSION_SHORT"
git checkout -b ${{ env.PR_BRANCH }}
git checkout -b $PR_BRANCH
fi
echo "BASE_BRANCH=$BASE_BRANCH" | tee -a $GITHUB_ENV
Expand Down

0 comments on commit cae83d4

Please sign in to comment.