From 926c8e1943b16a31343ca55fe1087d74f9db9bb5 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Sat, 3 Oct 2020 17:29:11 +0800 Subject: [PATCH] Update publish script Remove git commits --- publish.sh | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/publish.sh b/publish.sh index 256ad30..8b5772c 100755 --- a/publish.sh +++ b/publish.sh @@ -1,8 +1,6 @@ defaultBranch=master for branch in $(cat package.json | jq .publishing | jq -r keys[]) ; do - git checkout $branch - rawRepository=$(cat package.json | jq -r .publishing.$branch.repository) repository=$(cat package.json | jq -r .publishing.$branch.repository) defaultRepository=$(cat package.json | jq -r .publishing.$defaultBranch.repository) @@ -10,15 +8,10 @@ for branch in $(cat package.json | jq .publishing | jq -r keys[]) ; do if [ $repository = $defaultRepository ]; then echo "$( jq --arg repository "$repository" '.repository = $repository' package.json )" > package.json echo "Publishing to primary repository: $repository" - git push - git reset --hard elif [ $rawRepository != 'null' ]; then echo "$branch is a mirror" echo "$( jq --arg repository "$repository" '.repository = $repository' package.json )" > package.json echo "Publishing to mirror repository: $repository" - git commit -am "Publish to $branch" - git push --mirror $repository - git reset --hard fi rawName=$(cat package.json | jq .publishing.$branch.name) @@ -28,7 +21,6 @@ for branch in $(cat package.json | jq .publishing | jq -r keys[]) ; do fi registry=$(cat package.json | jq -r .publishing.$branch.publishConfig.registry) echo "Publishing to package repository: $registry" - npm publish --registry=$registry + npm publish --registry=$registry --access public + git reset --hard done - -git checkout $defaultBranch