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