nodecid/publish.sh
Benjamin Toby 2118f04b63 Updates
2025-01-16 06:32:50 +01:00

15 lines
131 B
Bash
Executable File

#!/bin/bash
tsc
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
git add .
git commit -m "$msg"
git push
bun publish