Skip to content

Commit

Permalink
Add PyPI publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsDrike committed Dec 12, 2022
1 parent 40cb62e commit 472cf85
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Publish to PyPI / GitHub

on:
push:
branches:
- main
tags:
- "v*"

jobs:
publish:
name: "Build and publish to PyPI"
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Python Dependencies
uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.2
with:
dev: true
python_version: "3.10.5"
install_args: "--with release"

- name: Set version with dynamic versioning
run: poetry run poetry-dynamic-versioning

- name: Build project for distribution
run: poetry build

- name: Check Version
id: check-version
run: |
[[ "$(poetry version --short)" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] || echo prerelease=true >> $GITHUB_OUTPUT
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: steps.check-version.outputs.prerelease == 'true'

- name: Run release script
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish

0 comments on commit 472cf85

Please sign in to comment.