2019-08-23 07:13:19 -04:00
|
|
|
#! /usr/bin/env bash
|
2019-08-20 16:48:52 -04:00
|
|
|
set -Eeuo pipefail
|
|
|
|
|
2019-09-12 08:38:56 -04:00
|
|
|
|
|
|
|
if [[
|
|
|
|
"$INPUT_USER" == "__token__" &&
|
|
|
|
! "$INPUT_PASSWORD" =~ ^pypi-
|
|
|
|
]]
|
|
|
|
then
|
|
|
|
>&2 echo \
|
|
|
|
[WARNING]: \
|
|
|
|
It looks like you are trying to use an API token to \
|
|
|
|
authenticate in the package index and your token value does \
|
|
|
|
not start with '"pypi-"' as it typically should. This may \
|
|
|
|
cause an authentication error. Please verify that you have \
|
|
|
|
copied your token properly if such an error occurs.
|
|
|
|
fi
|
|
|
|
|
2019-09-12 11:53:53 -04:00
|
|
|
if [[
|
|
|
|
! -d dist/ ||
|
|
|
|
"`ls -l dist/*.tar.gz dist/*.whl`" == "total 0"
|
|
|
|
]]
|
|
|
|
then
|
|
|
|
>&2 echo \
|
|
|
|
[WARNING]: \
|
|
|
|
It looks like there is no Python distribution packages to \
|
|
|
|
publish in the '"dist/"' directory. Please verify that they \
|
|
|
|
are in place should you face this problem.
|
|
|
|
fi
|
|
|
|
|
2019-09-12 08:38:56 -04:00
|
|
|
|
2019-08-23 07:17:10 -04:00
|
|
|
TWINE_USERNAME="$INPUT_USER" \
|
|
|
|
TWINE_PASSWORD="$INPUT_PASSWORD" \
|
|
|
|
TWINE_REPOSITORY_URL="$INPUT_REPOSITORY_URL" \
|
2019-08-20 16:48:52 -04:00
|
|
|
exec twine upload dist/*
|