File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,14 @@ echo "Doing a release..."
1717LOG=$( git log --format=" %s" -1 | grep -Poe " #\d+" )
1818PR_NUM=${LOG: 1}
1919
20- yarn run lerna publish prerelease --preid=prerelease --dist-tag=prerelease --yes 2>&1 | tee lerna-output.txt
20+ # yarn run lerna publish prerelease --preid=prerelease --dist-tag=prerelease --yes 2>&1 | tee lerna-output.txt
21+ # Patch release
22+ # yarn run lerna publish patch --dist-tag=prerelease-patch --no-private --yes 2>&1 | tee lerna-output.txt
2123
2224# use lerna command below for dry run
2325# yarn run lerna version prerelease --preid=prerelease --yes --no-git-tag-version --no-push | tee lerna-output.txt
26+ # use lerna command below for dry run for patch release
27+ yarn run lerna version patch --yes --no-git-tag-version --no-push --no-private | tee lerna-output.txt
2428
2529if grep -i " Successfully published" lerna-output.txt; # Leave a Github comment
2630then
You can’t perform that action at this time.
0 commit comments