mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 10:23:35 -05:00
Add an initial GitHub Action declaration
This commit is contained in:
parent
b62d85371d
commit
ea3fbc950e
1 changed files with 18 additions and 0 deletions
18
Dockerfile
Normal file
18
Dockerfile
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
FROM python:3.7-slim
|
||||||
|
|
||||||
|
LABEL "maintainer"="Sviatoslav Sydorenko <wk+re-actors@sydorenko.org.ua>"
|
||||||
|
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/*"]
|
Loading…
Reference in a new issue