mirror of
https://github.com/Z3Prover/z3
synced 2026-07-18 13:05:46 +00:00
update release.yml and tptp_frontend
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e2b9e3a6dc
commit
c4cb5bbc15
2 changed files with 14 additions and 8 deletions
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
|
@ -917,6 +917,16 @@ jobs:
|
|||
with:
|
||||
name: PythonPackage
|
||||
path: dist
|
||||
|
||||
- name: Rewrite macOS wheel tags unsupported by test.PyPI
|
||||
run: |
|
||||
# TestPyPI rejects current macOS wheel tags such as macosx_13_3_*.
|
||||
# Rewrite only the unsupported 13_3 tag to 13 for upload validation.
|
||||
for whl in dist/*-macosx_13_3_*.whl; do
|
||||
[ -e "$whl" ] || continue
|
||||
mv "$whl" "${whl/macosx_13_3_/macosx_13_0_}"
|
||||
done
|
||||
ls -l dist
|
||||
|
||||
- name: Publish to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue