Skip to content

Commit c4f437d

Browse files
Increased version number to 1.0.2
1 parent 19f3547 commit c4f437d

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/publish.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,13 @@ jobs:
3838

3939
- name: Merge wheels
4040
run: |
41-
set -euo pipefail
42-
43-
# find unique versions in names like wheels___1.2.3___manylinux2014_x86_64.zip
44-
versions=$(ls wheels___*___*.zip 2>/dev/null \
45-
| sed -E 's/wheels___([^_]+)___.*\.zip/\1/' \
46-
| sort -u)
41+
# find unique versions
42+
versions=$(
43+
cd artifacts &&
44+
ls wheels___*___*.zip 2>/dev/null \
45+
| sed -E 's/wheels___([^_]+)___.*\.zip/\1/' \
46+
| sort -u
47+
)
4748
4849
if [[ -z "$versions" ]]; then
4950
echo "No wheel archives found, skipping."
@@ -56,8 +57,8 @@ jobs:
5657
5758
tmp=$(mktemp -d)
5859
# unpack each matching zip into the temp dir
59-
for z in wheels___${version}___*.zip; do
60-
echo "Unpacking $z"
60+
for z in artifacts/wheels___${version}___*.zip; do
61+
echo "Unpacking $z"
6162
unzip -q "$z" -d "$tmp"
6263
done
6364

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.1
1+
1.0.2

0 commit comments

Comments
 (0)