From ea3fbc950e53c44020176949339b991bc5fc39ee Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 27 Mar 2019 20:41:20 +0100 Subject: [PATCH] Add an initial GitHub Action declaration --- Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ab2a9eb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +FROM python:3.7-slim + +LABEL "maintainer"="Sviatoslav Sydorenko " +LABEL "repository"="https://github.com/re-actors/pypi-action" +LABEL "homepage"="https://github.com/re-actors/pypi-action" + +LABEL "com.github.actions.name"="pypi-action" +LABEL "com.github.actions.description"="Upload Python distribution packages to PyPI" +LABEL "com.github.actions.icon"="upload-cloud" +LABEL "com.github.actions.color"="yellow" + +ENV PYTHONDONTWRITEBYTECODE 1 +ENV PYTHONUNBUFFERED 1 + +RUN pip install --upgrade --no-cache-dir twine + +ENTRYPOINT ["twine"] +CMD ["upload", "dist/*"]