Skip to content

Commit

Permalink
Working on publish release
Browse files Browse the repository at this point in the history
  • Loading branch information
prubach committed Jan 16, 2024
1 parent 904de04 commit b46d162
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,24 @@ jobs:
- Second Change
draft: false
prerelease: false
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install build env
run: >-
python3 -m
pip install
wheel scikit_build
--user
- name: Build a binary wheel and a source tarball
run: python3 setup.py bdist_wheel
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
Expand Down

0 comments on commit b46d162

Please sign in to comment.