mirror of
https://github.com/primer/css.git
synced 2024-11-28 04:43:05 +03:00
12 lines
259 B
Bash
Executable File
12 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "📦 Publishing latest release..."
|
|
|
|
$(dirname $0)/notify pending
|
|
|
|
# note: try-publish should exit cleanly if it detects a duplicate
|
|
# published version
|
|
$(npm bin)/lerna exec -- $(pwd)/script/try-publish
|
|
|
|
$(dirname $0)/notify success
|