Skip to content

Commit

Permalink
ci: automatically publish package on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrezina committed Apr 6, 2023
1 parent fa7f5dd commit 468a110
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Publish package
on:
release:
types: [created]
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
run: pip3 install --upgrade build

- name: Build Python package
run: python3 -m build --sdist --wheel --outdir dist/ .

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 468a110

Please sign in to comment.