Skip to content

Commit

Permalink
Added workflow to release to test pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
maerteijn committed Oct 9, 2023
1 parent e96ccf5 commit f3f39ec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish-testpypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish to pypi test
on: workflow_dispatch

jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install wheel
run: pip install wheel
- name: Build a binary wheel
run: make wheel
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

0 comments on commit f3f39ec

Please sign in to comment.