armour/scripts/git.sh
Ari Archer 70a746b6a8
Update information
Signed-off-by: Ari Archer <ari@ari.lt>
2025-01-02 11:45:53 +02:00

20 lines
274 B
Bash
Executable file

#!/usr/bin/env sh
set -xe
main() {
echo 'did u deactivate the venv'
read -r _
tox
./scripts/docindex.sh
git add -A
git commit -s
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
[ ! "$DO_PYPI" ] || ./scripts/pypi.sh
}
main "$@"