Skip to content

Commit

Permalink
Add publish to pypi to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rytilahti committed Aug 3, 2022
1 parent 39259cd commit 556109b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish packages
on:
release:
types: [published]

jobs:
build-n-publish:
name: Build release packages
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: 3.9

- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish release on pypi
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 556109b

Please sign in to comment.