datasquirel/publish.sh
Benjamin Toby dfe6fb3177 Updates
2025-01-20 07:31:16 +01:00

14 lines
130 B
Bash
Executable File

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