Skip to content

Commit

Permalink
rewrite deploy with macos
Browse files Browse the repository at this point in the history
  • Loading branch information
SunsetWolf committed Dec 19, 2024
1 parent e4910dd commit 01d2011
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,18 +131,22 @@ jobs:
make build
- name: Rename 1
run: |
make build
python -c "
from pathlib import Path
plat_info = '${{ matrix.buildplat[1] }}'.split('_', 1)[-1]
sys_ver_info = '${{ matrix.buildplat[0] }}'.split('-')[-1]
replaced = f'{sys_ver_info}_0_{plat_info}'
print(replaced)
for whl_file in Path('./dist').glob('*.whl'):
if 'universal2' in whl_file.stem:
parts = whl_file.stem.split('_')
print(parts)
be_replaced = '_'.join(parts[1:])
print(be_replaced)
new_name = whl_file.name.replace(be_replaced, replaced)
print(new_name)
new_whl_file = whl_file.with_name(new_name)
print(new_whl_file)
whl_file.rename(new_whl_file)
print(f'Renamed: {whl_file} -> {new_whl_file}')
"
Expand Down

0 comments on commit 01d2011

Please sign in to comment.