File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,13 @@ jobs:
3838
3939 - name : Merge wheels
4040 run : |
41- set -euo pipefail
42-
4341 # 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)
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."
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
Original file line number Diff line number Diff line change 1- 1.0.1
1+ 1.0.2
You can’t perform that action at this time.
0 commit comments