Skip to content

Commit

Permalink
ci: build wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
percevalw committed Jan 31, 2024
1 parent 0765fcb commit e364ffa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,25 @@ on:

jobs:

build_sdist:
name: Build source distribution
Build:
name: Build package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Build sdist
run: pipx run build --sdist
run: pipx run build --sdist --wheel

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
path: |
dist/*.tar.gz
dist/*.whl
PyPI:
name: Upload to PyPI

needs: [build_sdist]
needs: [Build]
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion confit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
)
from .autoreload import autoreload_plugin

__version__ = "0.5.5"
__version__ = "0.5.6"

autoreload_plugin()

0 comments on commit e364ffa

Please sign in to comment.