File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 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."
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
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