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