22 lines
519 B
Bash
Executable File
22 lines
519 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
VERSION_FILE="httpx/__version__.py"
|
|
|
|
|
|
if [ ! -z "$GITHUB_ACTIONS" ]; then
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "GitHub Action"
|
|
|
|
VERSION=`grep __version__ ${VERSION_FILE} | grep -o '[0-9][^"]*'`
|
|
|
|
if [ "refs/tags/${VERSION}" != "${GITHUB_REF}" ] ; then
|
|
echo "GitHub Ref '${GITHUB_REF}' did not match package version '${VERSION}'"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
set -x
|
|
|
|
uv run twine upload dist/*
|
|
uv run mkdocs gh-deploy --force
|