deploy to pypi #1
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: Build pypi package | |
on: | |
push: | |
tags: # on tags with versions | |
- "v*.*.*" | |
jobs: | |
release-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
cache: "poetry" | |
- name: Install package and dependencies | |
run: | | |
poetry install --without dev --with build | |
- name: Build and publish | |
run: | | |
poetry version $(git describe --tags --abbrev=0) | |
poetry build | |
- name: Verify wheel using twine | |
run: | | |
poetry run twine check dist/* --strict | |
- name: Upload release distributions | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-dists | |
path: dist/ | |
pypi-publish: | |
runs-on: ubuntu-latest | |
needs: | |
- release-build | |
environment: | |
name: pypi | |
url: https://pypi.org/p/cr-apk | |
permissions: | |
id-token: write | |
steps: | |
- name: Retrieve release distributions | |
uses: actions/download-artifact@v4 | |
with: | |
name: release-dists | |
path: dist/ | |
- name: Publish release distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
print-hash: true |