Skip to content

Commit d1ca997

Browse files
committed
try fix
1 parent 354bc83 commit d1ca997

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build_artifacts.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ jobs:
7575
- id: set-matrix
7676
run: |
7777
artifacts=()
78+
is_workflow_call=${{ inputs.is_workflow_call }}
7879
# Build every package if not a workflow call
79-
if [[ ${${{ inputs.is_workflow_call }}:-0} == "0" ]]; then
80+
if [[ ${is_workflow_call:-0} == "0" ]]; then
8081
artifacts=("'jax'" ", 'jaxlib'" ", 'jax-cuda-pjrt'" ", 'jax-cuda-plugin'")
8182
else
8283
if [[ ${${{ inputs.build_jax }}:-0} == "1" ]]; then

0 commit comments

Comments
 (0)