-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathverdaccio-deploy.sh
executable file
·45 lines (34 loc) · 1.32 KB
/
verdaccio-deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
port=4000
# usually defaults to https://registry.npmjs.com/
original_registry=`npm get registry`
registry="http://localhost:$port"
output="output.out"
ci=false
echo "Build and deploy to verdaccio"
# Wait for verdaccio to start
grep -q 'http address' <(tail -f $output)
if curl -sI http://localhost:4000/ >/dev/null; then
echo "Verdaccio is running on port 4000."
else
echo "Verdaccio is NOT running on port 4000."
fi
yarn config set npmPublishRegistry $registry
yarn config set npmRegistryServer $registry
yarn config set npmAlwaysAuth false
yarn config set npmAuthToken abc
yarn config set unsafeHttpWhitelist localhost
npm set registry $registry
git config --global user.email octobot@github.com
git config --global user.name GitHub Actions
# Generate dists for the packages
make build
# Bump all package versions (allow publish from current branch but don't push tags or commit)
yarn workspaces list --json --no-private | node ./scripts/verdaccio-generate-versions.js
cat .yarn/versions/version.yml
yarn version apply --all
cat ./packages/react-aria-components/package.json
# Publish packages to verdaccio
yarn workspaces foreach --all --no-private -pt npm publish --tag latest
curl -s http://localhost:4000/@adobe/react-spectrum
netstat -tpln | awk -F'[[:space:]/:]+' '$5 == 4000 {print $(NF-2)}' | xargs kill