Skip to content

Commit

Permalink
deploy to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmiglio committed Oct 11, 2024
1 parent fa8c5f2 commit 7849763
Show file tree
Hide file tree
Showing 3 changed files with 581 additions and 1 deletion.
54 changes: 54 additions & 0 deletions .github/workflows/deploy-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
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
Loading

0 comments on commit 7849763

Please sign in to comment.