Skip to content

Commit

Permalink
Merge pull request #154 from pauldmccarthy/ci/upload-artifacts-names
Browse files Browse the repository at this point in the history
CI: Make sure each artifact has a unique name
  • Loading branch information
pauldmccarthy authored Nov 15, 2024
2 parents 6d00e8a + 5285c28 commit 44fcc01
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- uses: actions/upload-artifact@v4.4.3
with:
name: wheels
name: macos_wheels
path: ./dist/*.whl

build_windows_wheels:
Expand All @@ -78,7 +78,7 @@ jobs:
run: bash ./.ci/build_wheels.sh
- uses: actions/upload-artifact@v4.4.3
with:
name: wheels
name: windows_${{arch}}_wheels
path: ./dist/*.whl

build_linux_wheels:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
run: bash ./.ci/build_wheels.sh
- uses: actions/upload-artifact@v4.4.3
with:
name: wheels
name: linux_${{arch}}_wheels
path: ./dist/*.whl


Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# `indexed_gzip` changelog


## 1.9.1 (November 15th 2024)


* Adjustments to CI configuration (#154).


## 1.9.0 (November 15th 2024)


Expand Down
2 changes: 1 addition & 1 deletion indexed_gzip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
"""


__version__ = '1.9.0'
__version__ = '1.9.1'

0 comments on commit 44fcc01

Please sign in to comment.