to pypi using flit
v1
Une action pour construire et publier Python? Packages sur PYPI à l'aide de flit.
Pour utiliser l'action, ajoutez l'étape suivante à votre fichier de workflow (par exemple .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 }}
L'action supposait:
- Le projet a un
pyproject.toml(ousetup.py) dans le répertoire de niveau supérieur.- Python et PIP sont installés.
- 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 | Description | Défaut | Requis |
|---|---|---|---|
user-name | Nom d'utilisateur PYPI / TestPy | __token__ | FAUX |
password | PYPI / TESTPYPI Mot de passe / jeton API | nul | Vrai |
repository-url | URL du référentiel | https://upload.pypi.org/legacy/ | FAUX |
Le code source de ce projet est publié sous la licence MIT. Ce projet n'est pas associé à GitHub.