hyfetch/tools/deploy.sh
2024-05-16 21:50:22 +08:00

14 lines
237 B
Bash
Executable file

#!/usr/bin/env bash
# Stop on error
set -e
# Get script directory
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
# Run build_pkg
"$DIR/build_pkg.sh"
# Check built files
twine check dist/*
twine upload dist/*