v0.7.0 #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
release: | |
types: | |
- published | |
env: | |
DEFAULT_PYTHON: 3.12 | |
jobs: | |
release-pypi: | |
name: Upload release to PyPI | |
runs-on: ubuntu-latest | |
environment: | |
name: PyPI | |
url: https://pypi.org/project/python-typing-update/ | |
permissions: | |
contents: write # Required to upload release assets | |
steps: | |
- name: Check out code from Github | |
uses: actions/checkout@v4.2.1 | |
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
id: python | |
uses: actions/setup-python@v5.2.0 | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: Build distributions | |
run: | | |
python -m pip install -U pip twine build | |
python -m build | |
- name: Upload to PyPI | |
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags') | |
env: | |
TWINE_REPOSITORY: pypi | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: | | |
twine upload --verbose dist/* | |
- name: Upload release assets | |
uses: softprops/action-gh-release@v2.0.8 | |
with: | |
files: | | |
dist/*.whl | |
dist/*.tar.gz |