mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2025-02-20 11:23:01 -05:00
7 lines
179 B
Bash
Executable file
7 lines
179 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/*
|