-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tooling): fix beta releases (#5083)
- Loading branch information
1 parent
5c1d532
commit a64ebc4
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]" | ||
|
@@ -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 | ||
|