Skip to content

Commit eb2860e

Browse files
authored
Fix artifact names (#12)
* Fix artifact names * update * fix * version 0.1.11
1 parent 3948d7d commit eb2860e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Upload wheels
5454
uses: actions/upload-artifact@v4
5555
with:
56-
name: wheels-${{ matrix.runs-on }}
56+
name: wheels-sdist
5757
path: target/wheels
5858

5959
pack-linux:
@@ -79,7 +79,7 @@ jobs:
7979
- name: Upload wheels
8080
uses: actions/upload-artifact@v4
8181
with:
82-
name: wheels-${{ matrix.runs-on }}
82+
name: wheels-linux-${{ matrix.python-version }}-${{ matrix.target }}
8383
path: target/wheels
8484

8585
pack-windows:
@@ -106,7 +106,7 @@ jobs:
106106
- name: Upload wheels
107107
uses: actions/upload-artifact@v4
108108
with:
109-
name: wheels-${{ matrix.runs-on }}
109+
name: wheels-windows-${{ matrix.python-version }}-${{ matrix.target }}
110110
path: target/wheels
111111

112112
pack-macos:
@@ -131,7 +131,7 @@ jobs:
131131
- name: Upload wheels
132132
uses: actions/upload-artifact@v4
133133
with:
134-
name: wheels-${{ matrix.runs-on }}
134+
name: wheels-macos-${{ matrix.python-version }}
135135
path: target/wheels
136136

137137
release:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python-daachorse"
3-
version = "0.1.10"
3+
version = "0.1.11"
44
edition = "2021"
55
authors = [
66
"Koichi Akabe <[email protected]>",

0 commit comments

Comments
 (0)