Skip to content

Commit 8b31fe3

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

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,12 @@ jobs:
4141
set -euo pipefail
4242
4343
# 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)
44+
versions=$(
45+
cd artifacts &&
46+
ls wheels___*___*.zip 2>/dev/null \
47+
| sed -E 's/wheels___([^_]+)___.*\.zip/\1/' \
48+
| sort -u
49+
)
4750
4851
if [[ -z "$versions" ]]; then
4952
echo "No wheel archives found, skipping."
@@ -56,7 +59,7 @@ jobs:
5659
5760
tmp=$(mktemp -d)
5861
# unpack each matching zip into the temp dir
59-
for z in wheels___${version}___*.zip; do
62+
for z in artifacts/wheels___${version}___*.zip; do
6063
echo " ↳ Unpacking $z"
6164
unzip -q "$z" -d "$tmp"
6265
done

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)