mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-12 11:49:57 -05:00
7 lines
181 B
Bash
Executable file
7 lines
181 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/*
|