Skip to content

Commit

Permalink
Use merge task to extract manylinux wheel for release (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis authored May 22, 2024
1 parent 3ce8583 commit 4ad1104
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .ado/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
displayName: Upload Python Artifacts Win
condition: eq(variables['Agent.OS'], 'Windows_NT')

- publish: $(System.DefaultWorkingDirectory)/target/wheels/*manylinux*.whl
- publish: $(System.DefaultWorkingDirectory)/target/wheels
artifact: Wheels.Linux.${{ variables['arch'] }}
displayName: Upload Python Artifacts Linux
condition: eq(variables['Agent.OS'], 'Linux')
Expand Down Expand Up @@ -192,13 +192,13 @@ jobs:
displayName: Download x86_64 Python Artifacts Linux

- script: |
mkdir -p target/wheels
mv ../Wheels.Linux.x86_64/*.whl target/wheels
mv ../Wheels.Win.x86_64/*.whl target/wheels
mv ../Wheels.Mac.x86_64/*.whl target/wheels
mv ../Wheels.Mac.aarch64/*.whl target/wheels
mv ../Wheels.Mac.universal/*.whl target/wheels
ls target/wheels/*
mkdir -p target/wheels
mv ../Wheels.Linux.x86_64/*manylinux*.whl target/wheels
mv ../Wheels.Win.x86_64/*.whl target/wheels
mv ../Wheels.Mac.x86_64/*.whl target/wheels
mv ../Wheels.Mac.aarch64/*.whl target/wheels
mv ../Wheels.Mac.universal/*.whl target/wheels
ls target/wheels/*
displayName: Move Py Artifacts to Publishing Dir
- publish: $(System.DefaultWorkingDirectory)/target/wheels
Expand Down

0 comments on commit 4ad1104

Please sign in to comment.