Skip to content

Commit 9fd2f3e

Browse files
leofangclaude
andcommitted
Fix display step guard: skip only for published bindings
cuda_python*.whl exists for both main (current-run artifact) and backport (downloaded from prior branch). Only published mode has no local wheel file. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a566781 commit 9fd2f3e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test-wheel-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
rmdir cuda-python-wheel
200200
201201
- name: Display structure of downloaded cuda-python artifacts
202-
if: ${{ env.BINDINGS_SOURCE == 'main' }}
202+
if: ${{ env.BINDINGS_SOURCE != 'published' }}
203203
run: |
204204
pwd
205205
ls -lah cuda_python*.whl cuda_pathfinder/

.github/workflows/test-wheel-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
rmdir cuda-python-wheel
186186
187187
- name: Display structure of downloaded cuda-python artifacts
188-
if: ${{ env.BINDINGS_SOURCE == 'main' }}
188+
if: ${{ env.BINDINGS_SOURCE != 'published' }}
189189
run: |
190190
Get-Location
191191
Get-ChildItem cuda_python*.whl | Select-Object Mode, LastWriteTime, Length, FullName

0 commit comments

Comments
 (0)