mirror of
https://github.com/primer/css.git
synced 2024-11-24 05:06:04 +03:00
11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
args=$@
|
|
npm_tag=pr
|
|
|
|
echo "🐦 Publishing PR release to dist-tag '$npm_tag'..."
|
|
# script/notify pending
|
|
lerna publish --npm-tag=$npm_tag --canary --no-git $args
|
|
script/notify success
|