mirror of
https://github.com/primer/css.git
synced 2024-12-25 15:14:59 +03:00
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "🐦 Publishing PR (canary) release..."
|
|
|
|
$(dirname $0)/notify pending
|
|
|
|
$(npm bin)/lerna publish --npm-tag=pr --canary=pr --exact $@
|
|
|
|
$(dirname $0)/notify success
|