mirror of
https://gitcode.com/gh_mirrors/gh/gh-action-pypi-publish.git
synced 2026-07-02 18:27:49 +00:00
25d67dc298
Co-Authored-By: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua> Co-Authored-By: Pradyun Gedam <pradyunsg@gmail.com>
8 lines
178 B
Bash
Executable File
8 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/*
|