We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e76fdf4 commit b48e069Copy full SHA for b48e069
scripts/publish.sh
@@ -43,8 +43,10 @@ elif [[ "$BRANCH" == "develop" ]] && [[ "$IS_PULL_REQUEST" == "false" ]]; then
43
git checkout develop
44
#yarn lerna publish --canary --dist-tag next --preid develop.$(date +%s) --yes
45
ID="develop.$(date +%s)"
46
+ VERSION=$(jq -r .version lerna.json)
47
git fetch --tags
- yarn lerna publish prepatch --no-commit-hooks --dist-tag next --preid $ID --yes -m '[skip ci]' --no-git-tag-version --no-push
48
+
49
+ yarn lerna publish --loglevel debug --force-publish --no-git-tag-version --no-commit-hooks --canary --dist-tag snapshot --preid $ID --yes
50
51
if [[ "$?" == 0 ]]; then
52
echo $MSG_PUBLISH_SUCCESS
0 commit comments