10 lines
132 B
Bash
Executable File
10 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
npm run update-authors
|
|
git diff --exit-code
|
|
npm run package -- --sign
|
|
git push
|
|
git push --tags
|
|
npm run gh-release
|