Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Publish tag to Pypi
on:
release:
types: [published]
workflow_dispatch:

permissions:
contents: read # to fetch code (actions/checkout)
Expand All @@ -20,12 +21,11 @@ jobs:
- name: Install dev tools
run: |
pip install -r dev_requirements.txt
pip install twine wheel
pip install twine wheel build

- name: Build package
run: |
python setup.py build
python setup.py sdist bdist_wheel
python -m build

- name: Basic package test prior to upload
run: |
Expand Down