Skip to content

Commit

Permalink
ci: PLT-578: Bump second digit on release cut (#6716)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitabelonogov authored Nov 26, 2024
1 parent c268cdc commit c00c51c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-cut-off-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ jobs:
release_version="${first}.${second}.${third}"
release_branch="${{ env.RELEASE_BRANCH_PREFIX }}/${first}.${second}.${third}"
next_develop_version="${first}.${second}.$(($third + 1)).dev0"
next_develop_version="${first}.$(($second + 1)).0.dev0"
echo "release_branch=${release_branch}" >> $GITHUB_OUTPUT
echo "release_version=${release_version}" >> $GITHUB_OUTPUT
echo "next_develop_version=${next_develop_version}" >> $GITHUB_OUTPUT
echo "release_branch=${release_branch}" >> "${GITHUB_OUTPUT}"
echo "release_version=${release_version}" >> "${GITHUB_OUTPUT}"
echo "next_develop_version=${next_develop_version}" >> "${GITHUB_OUTPUT}"
- name: Cut release branch
shell: bash
Expand Down

0 comments on commit c00c51c

Please sign in to comment.