mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2025-02-21 11:50:58 -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/*
|