mirror of
https://github.com/primer/css.git
synced 2024-11-24 05:06:04 +03:00
15 lines
277 B
Bash
Executable File
15 lines
277 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "🐦 Publishing PR (canary) release..."
|
|
|
|
PATH=$(npm bin):$PATH
|
|
|
|
# script/notify pending
|
|
|
|
lerna publish --npm-tag=pr --canary --no-git --yes
|
|
|
|
$(dirname $0)/notify success
|
|
|
|
# FIXME remove this before merging; just for testing
|
|
$(dirname $0)/notify-slack
|