web-mini/scripts/git.sh
Ari Archer 087ebffb7c
Update information.
Signed-off-by: Ari Archer <ari@ari.lt>
2025-01-02 11:39:12 +02:00

15 lines
175 B
Bash
Executable file

#!/usr/bin/env sh
set -xe
main() {
tox
git add -A
git commit -s
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
./scripts/pypi.sh
}
main "$@"