nodecid/publish.sh

15 lines
131 B
Bash
Raw Permalink Normal View History

2023-10-29 10:49:04 +00:00
#!/bin/bash
2025-01-16 05:25:16 +00:00
tsc
2023-10-29 10:49:04 +00:00
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
2025-01-16 05:25:16 +00:00
git add .
git commit -m "$msg"
git push
2025-01-16 05:32:50 +00:00
bun publish