1
1
mirror of https://github.com/primer/css.git synced 2024-12-02 07:53:06 +03:00
css/script/release-candidate

14 lines
251 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
2017-07-21 00:33:14 +03:00
if [[ "$@" = "--dry-run" ]]; then
publish_args="--skip-git --skip-npm"
else
publish_args=$@
fi
echo "📦 Publishing canary release..."
npx lerna publish --canary --exact --npm-tag=rc $publish_args
2017-07-21 00:33:14 +03:00
script/generate-changelog