mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2025-02-20 11:23:01 -05:00
Co-Authored-By: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua> Co-Authored-By: Pradyun Gedam <pradyunsg@gmail.com>
7 lines
178 B
Bash
Executable file
7 lines
178 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
TWINE_USERNAME=$INPUT_USER \
|
|
TWINE_PASSWORD=$INPUT_PASSWORD \
|
|
TWINE_REPOSITORY_URL=$INPUT_REPOSITORY_URL \
|
|
exec twine upload dist/*
|