chore: sync repo

This commit is contained in:
stainless-app[bot] 2025-08-31 06:00:06 +00:00
parent 817f1a0816
commit 9b3134a27e
161 changed files with 1 additions and 20065 deletions

View file

@ -1,21 +0,0 @@
#!/usr/bin/env bash
errors=()
if [ -z "${PYPI_TOKEN}" ]; then
errors+=("The PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.")
fi
lenErrors=${#errors[@]}
if [[ lenErrors -gt 0 ]]; then
echo -e "Found the following errors in the release environment:\n"
for error in "${errors[@]}"; do
echo -e "- $error\n"
done
exit 1
fi
echo "The environment is ready to push releases!"

View file

@ -1,6 +0,0 @@
#!/usr/bin/env bash
set -eux
mkdir -p dist
rye build --clean
rye publish --yes --token=$PYPI_TOKEN