mirror of
https://github.com/primer/css.git
synced 2024-11-24 05:06:04 +03:00
14 lines
335 B
Bash
Executable File
14 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "🐦 Publishing PR (canary) release..."
|
|
|
|
# don't notify of a pending publish event because the version will differ from
|
|
# what lerna creates as a canary release
|
|
# $(dirname $0)/notify pending
|
|
|
|
$(npm bin)/lerna publish --npm-tag=pr --canary --exact $@
|
|
|
|
$(npm bin)/lerna-changelog
|
|
|
|
$(dirname $0)/notify success
|