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 e28c1e0 commit 043d283
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ jobs:
sys_ver_info = '${{ matrix.buildplat[0] }}'.split('-')[-1]
replaced = f'{sys_ver_info}_0_{plat_info}'
for whl_file in Path('./dist').glob('*.whl'):
if 'universal2' in whl_file.stem:
new_name = whl_file.name.replace(be_replaced, replaced)
new_whl_file = whl_file.with_name(new_name)
whl_file.rename(new_whl_file)
print(f'Renamed: {whl_file} -> {new_whl_file}')
if 'universal2' in whl_file.stem:
new_name = whl_file.name.replace(be_replaced, replaced)
new_whl_file = whl_file.with_name(new_name)
whl_file.rename(new_whl_file)
print(f'Renamed: {whl_file} -> {new_whl_file}')
"
- name: Build 2
if: ${{ (matrix.buildplat[0] != 'macos-13' || matrix['python-version'] != '3.11') && (matrix.buildplat[0] != 'macos-13' || matrix['python-version'] != '3.12') }}
Expand All @@ -147,11 +147,11 @@ jobs:
python -c "
plat_info = '${{ matrix.buildplat[1] }}'.split('_')[-1]
for whl_file in Path('./dist').glob('*.whl'):
if 'universal2' in whl_file.stem:
new_name = whl_file.name.replace('universal2', 'plat_info')
new_whl_file = whl_file.with_name(new_name)
whl_file.rename(new_whl_file)
print(f'Renamed: {whl_file} -> {new_whl_file}')
if 'universal2' in whl_file.stem:
new_name = whl_file.name.replace('universal2', 'plat_info')
new_whl_file = whl_file.with_name(new_name)
whl_file.rename(new_whl_file)
print(f'Renamed: {whl_file} -> {new_whl_file}')
"
- name: Build 2
if: ${{ (matrix.buildplat[0] != 'macos-13' || matrix['python-version'] != '3.11') && (matrix.buildplat[0] != 'macos-13' || matrix['python-version'] != '3.12') }}
Expand Down

0 comments on commit 043d283

Please sign in to comment.