to pypi using flit
v1
¿Una acción para construir y publicar Python? Paquetes a Pypi usando Flit.
Para usar la acción, agregue el siguiente paso a su archivo de flujo de trabajo (por ejemplo, Github/Workflows/Main.yml)
name : publish
# Controls when the workflow will run
on :
# Workflow will run when a release has been published for the package
release :
types :
- published
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch :
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs :
# This workflow contains a single job called "publish"
publish :
# The type of runner that the job will run on
runs-on : ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps :
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses : actions/checkout@v3
- name : Set up Python 3.9
uses : actions/setup-python@v3
with :
python-version : 3.9
cache : pip
- name : To PyPI using Flit
uses : AsifArmanRahman/to-pypi-using-flit@v1
with :
password : ${{ secrets.PYPI_API_TOKEN }}
La acción supone:
- El proyecto tiene un
pyproject.toml(osetup.py) en el directorio de nivel superior.- Se instalan Python y Pip.
- name : To PyPI using Flit
uses : AsifArmanRahman/to-pypi-using-flit@v1
with :
password : ${{ secrets.PYPI_API_TOKEN }}- name : To PyPI using Flit
uses : AsifArmanRahman/to-pypi-using-flit@v1
with :
user-name : ${{ secrets.PYPI_USERNAME }}
password : ${{ secrets.PYPI_PASSWORD }}- name : To PyPI using Flit
uses : AsifArmanRahman/to-pypi-using-flit@v1
with :
password : ${{ secrets.TESTPYPI_API_TOKEN }}
repository-url : https://test.pypi.org/legacy/- name : To PyPI using Flit
uses : AsifArmanRahman/to-pypi-using-flit@v1
with :
user-name : ${{ secrets.TESTPYPI_USERNAME }}
password : ${{ secrets.TESTPYPI_PASSWORD }}
repository-url : https://test.pypi.org/legacy/ | Variable | Descripción | Por defecto | Requerido |
|---|---|---|---|
user-name | Nombre de usuario de Pypi/Testpypi | __token__ | FALSO |
password | Pypi/testpypi contraseña/token API | nulo | Verdadero |
repository-url | URL de repositorio | https://upload.pypi.org/legacy/ | FALSO |
El código fuente para este proyecto se publica bajo la licencia MIT. Este proyecto no está asociado con GitHub.