Skip to content

Commit

Permalink
chore(tooling): fix beta releases (#5083)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubencarvalho authored Feb 13, 2025
1 parent 5c1d532 commit a64ebc4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- name: Setup Job and Install Dependencies
uses: ./.github/actions/setup-job

- name: Install semver
run: npm install -g semver

- name: Set Git identity
run: |
git config --global user.email "[email protected]"
Expand All @@ -30,7 +33,7 @@ jobs:
- name: Calculate next minor version
id: calculate_next_minor_version
run: |
NEXT_MINOR_VERSION=$(yarn semver "${{ steps.get_lerna_version.outputs.version }}" -i minor)
NEXT_MINOR_VERSION=$(semver "${{ steps.get_lerna_version.outputs.version }}" -i minor)
echo "next_minor_version=$NEXT_MINOR_VERSION" >> $GITHUB_OUTPUT
- name: Get latest published beta version
Expand Down

0 comments on commit a64ebc4

Please sign in to comment.