Skip to content

Commit d98c174

Browse files
zxqfd555Manul from Pathway
authored andcommitted
correct delocate pipeline (#9923)
GitOrigin-RevId: 9f759ad690109e4cf1b40c163998a35ebd11e90b
1 parent 3ad271d commit d98c174

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/package_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ jobs:
9393

9494
- name: Delocate macos wheels
9595
if: ${{ matrix.os == 'selfhosted-macOS'}}
96-
script:
97-
- pip install delocate
98-
- delocate-wheel ./targets/wheels/*.whl
96+
run: |
97+
pip install delocate
98+
delocate-wheel ./targets/wheels/*.whl
9999
100100
- name: Upload artifact
101101
uses: actions/upload-artifact@v6

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ jobs:
140140

141141
- name: Delocate macos wheels
142142
if: ${{ matrix.os == 'selfhosted-macOS'}}
143-
script:
144-
- pip install delocate
145-
- delocate-wheel ./targets/wheels/*.whl
143+
run: |
144+
pip install delocate
145+
delocate-wheel ./targets/wheels/*.whl
146146
147147
- name: Build package Ubuntu AArch64
148148
if: ${{ matrix.os == needs.start-runner.outputs.label }}

0 commit comments

Comments
 (0)