mirror of
https://github.com/primer/css.git
synced 2024-12-19 12:12:02 +03:00
15 lines
301 B
Bash
Executable File
15 lines
301 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "📦 Publishing latest release..."
|
|
|
|
# note: try-publish should exit cleanly if it detects a duplicate
|
|
# published version
|
|
npx lerna exec $@ -- script/try-publish
|
|
|
|
# Build and publish storybook
|
|
npx build-storybook -o build
|
|
script/publish-storybook
|
|
|
|
script/generate-changelog
|