File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ jobs:
245
245
runs-on : ubuntu-latest
246
246
strategy :
247
247
matrix :
248
- arch : ["amd64", "arm64v8" ]
248
+ arch : ["amd64"]
249
249
manylinux_version : ["2014"]
250
250
is_pr :
251
251
- ${{ startsWith(github.ref, 'refs/pull/') }}
@@ -534,6 +534,8 @@ jobs:
534
534
run : |
535
535
RELEASE_TAG=${GITHUB_REF#refs/*/}
536
536
537
+ ls -laR release-artifacts/
538
+
537
539
# Deduplicate wheels built in different jobs with same tag
538
540
mkdir -p upload-staging
539
541
find ./release-artifacts/ \
@@ -542,13 +544,16 @@ jobs:
542
544
-name '*.jar' -or \
543
545
-name '*.pom' -or \
544
546
-name '*.whl' -or \
545
- -name 'adbc_*.tar.gz' \
546
- -name 'almalinux-*.tar.gz' \
547
- -name 'debian-*.tar.gz' \
547
+ -name 'adbc_*.tar.gz' -or \
548
+ -name 'almalinux-*.tar.gz' -or \
549
+ -name 'debian-*.tar.gz' -or \
548
550
-name 'ubuntu-*.tar.gz' \
549
551
')' \
552
+ -exec echo '{}' \; \
550
553
-exec mv '{}' upload-staging \;
551
554
555
+ ls -laR upload-staging/
556
+
552
557
UPLOAD=$(find upload-staging -type f | sort | uniq)
553
558
554
559
echo "Uploading files:"
You can’t perform that action at this time.
0 commit comments