From 22ca863113d1637f344aee10757d0be9bf566a70 Mon Sep 17 00:00:00 2001 From: Linlang Date: Thu, 19 Dec 2024 20:59:46 +0800 Subject: [PATCH] rewrite deploy with macos --- .github/workflows/python-publish.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 3a7a0424ff..eac3552bdc 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -138,17 +138,16 @@ jobs: 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}') + 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}') " - name: Build 2 if: ${{ (matrix.buildplat[0] != 'macos-13' || matrix['python-version'] != '3.11') && (matrix.buildplat[0] != 'macos-13' || matrix['python-version'] != '3.12') }}