Skip to content

Commit 7d835d4

Browse files
committed
Add missing upload-artifact to deploy
1 parent 3d160f7 commit 7d835d4

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/deploy.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,17 @@ jobs:
105105

106106
- name: Install cibuildwheel
107107
run: |
108-
python -m pip install twine cibuildwheel==2.22.0
108+
python -m pip install cibuildwheel==2.22.0
109109
110110
- name: Build wheel
111111
run: |
112112
python -m cibuildwheel --output-dir wheelhouse
113113
114+
- uses: actions/upload-artifact@v4
115+
with:
116+
name: flacarray-cp${{ matrix.python }}-${{ matrix.builder }}_${{ matrix.arch }}
117+
path: ./wheelhouse/flacarray*cp${{ matrix.python }}-${{ matrix.builder }}*${{ matrix.arch }}*.whl
118+
114119
upload_pypi:
115120
needs: build_wheels
116121
runs-on: ubuntu-latest

flacarray/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
# Set the log level
1515
logging.basicConfig(level=log_level)
1616

17-
__version__ = "0.2.1"
17+
__version__ = "0.2.2"
1818

1919
from .array import FlacArray

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "mesonpy"
99

1010
[project]
1111
name = "flacarray"
12-
version = "0.2.1"
12+
version = "0.2.2"
1313
description = "FLAC Compression of Arrays"
1414
readme = "README.md"
1515
maintainers = [

0 commit comments

Comments
 (0)