Skip to content

Commit

Permalink
chore: turn on dry run in release script while debugging (#9510)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolethoen authored Aug 16, 2023
1 parent cbd1248 commit 078f8ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ echo "Doing a release..."
LOG=$(git log --format="%s" -1 | grep -Poe "#\d+")
PR_NUM=${LOG:1}

yarn run lerna publish --conventional-commits --conventional-prerelease --dist-tag=prerelease --yes --no-private 2>&1 | tee lerna-output.txt
# yarn run lerna publish --conventional-commits --conventional-prerelease --dist-tag=prerelease --yes --no-private 2>&1 | tee lerna-output.txt

# dry run
yarn run lerna version --conventional-commits --conventional-prerelease --dist-tag=prerelease --no-private --yes --no-git-tag-version --no-push

# use lerna command below for dry run
# yarn run lerna version --conventional-commits --conventional-prerelease --yes --no-git-tag-version --no-push
Expand Down

0 comments on commit 078f8ca

Please sign in to comment.