turbo-sync/publish.sh

13 lines
126 B
Bash
Raw Normal View History

2024-12-25 19:38:57 +00:00
#!/bin/bash
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
git add .
git commit -m "$msg"
git push
npm publish