to pypi using flit
v1
构建和发布Python的动作?使用Flit的包装到PYPI。
要使用操作将以下步骤添加到工作流文件(例如.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 }}
动作假设:
- 该项目在顶级目录中具有
pyproject.toml(或setup.py)。- 安装了Python和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/ | 多变的 | 描述 | 默认 | 必需的 |
|---|---|---|---|
user-name | PYPI/TESTPYPI用户名 | __token__ | 错误的 |
password | PYPI/TESTPYPI密码/API令牌 | 无效的 | 真的 |
repository-url | 存储库URL | https://upload.pypi.org/legacy/ | 错误的 |
该项目的源代码是根据MIT许可证发布的。该项目与GitHub无关。