You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a prime candidate for a reusable workflow, since it boils down to:
- uses: actions/checkout@v3
- name: Set up Pythonuses: actions/setup-python@v4with:
python-version: '3.x'
- name: Build distributionsrun: make dist
- name: Publish a Python distribution to PyPIuses: pypa/gh-action-pypi-publish@release/v1with:
password: ${{ secrets.PYPI_TOKEN }}
This flow will be even nicer when PyPI supports reusable workflows for publishing, which is something we're working on.
The text was updated successfully, but these errors were encountered:
This is a prime candidate for a reusable workflow, since it boils down to:
This flow will be even nicer when PyPI supports reusable workflows for publishing, which is something we're working on.
The text was updated successfully, but these errors were encountered: