mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
chore: update release-edge script
This commit is contained in:
parent
858e31c7fc
commit
ee8eaef7ab
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -xe
|
||||
|
||||
# Restore all git changes
|
||||
git restore -s@ -SW -- packages examples
|
||||
|
||||
@ -7,13 +9,14 @@ git restore -s@ -SW -- packages examples
|
||||
yarn jiti ./scripts/bump-edge
|
||||
|
||||
# Resolve yarn
|
||||
yarn
|
||||
YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install
|
||||
|
||||
# Update token
|
||||
if [[ ! -z ${NODE_AUTH_TOKEN} ]] ; then
|
||||
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
|
||||
echo "registry=https://registry.npmjs.org/" >> ~/.npmrc
|
||||
echo "always-auth=true" >> ~/.npmrc
|
||||
echo "npmAuthToken: ${NODE_AUTH_TOKEN}" >> ~/.yarnrc.yml
|
||||
npm whoami
|
||||
fi
|
||||
|
||||
@ -21,6 +24,6 @@ fi
|
||||
for p in packages/* ; do
|
||||
pushd $p
|
||||
echo "Publishing $p"
|
||||
npm publish -q --access public # --dry-run
|
||||
yarn npm publish --access public --tolerate-republish
|
||||
popd
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user