Skip to content

Commit

Permalink
Add missing upload-artifact to deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Jan 2, 2025
1 parent 3d160f7 commit 7d835d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,17 @@ jobs:

- name: Install cibuildwheel
run: |
python -m pip install twine cibuildwheel==2.22.0
python -m pip install cibuildwheel==2.22.0
- name: Build wheel
run: |
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: flacarray-cp${{ matrix.python }}-${{ matrix.builder }}_${{ matrix.arch }}
path: ./wheelhouse/flacarray*cp${{ matrix.python }}-${{ matrix.builder }}*${{ matrix.arch }}*.whl

upload_pypi:
needs: build_wheels
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion flacarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# Set the log level
logging.basicConfig(level=log_level)

__version__ = "0.2.1"
__version__ = "0.2.2"

from .array import FlacArray
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build-backend = "mesonpy"

[project]
name = "flacarray"
version = "0.2.1"
version = "0.2.2"
description = "FLAC Compression of Arrays"
readme = "README.md"
maintainers = [
Expand Down

0 comments on commit 7d835d4

Please sign in to comment.