Skip to content

Commit

Permalink
fix formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
EmandM committed May 15, 2024
1 parent c87fb60 commit 711d7d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:
if [[ current_version == *${PREID}* ]]; then
echo "first prerelease version"
# if the current version is a prerelease, we can just bump the prerelease number
new_version=$(npm version prerelease --sign-git-tag -m "Create prererelease version %s")
new_version=$(npm version prerelease --sign-git-tag -m "Create prererelease version %s" )
else
echo "subsequent prerelease version"
# if the current version is not a prerelease, we need to add a prerelease number
new_version=$(npm version --preid=${PREID} pre${{ inputs.semver_type }} --sign-git-tag -m "Create prererelease version %s")")
new_version=$(npm version --preid=${PREID} pre${{ inputs.semver_type }} --sign-git-tag -m "Create prererelease version %s" )
fi
else
echo "creating new release"
Expand Down

0 comments on commit 711d7d3

Please sign in to comment.