Skip to content

Commit 47ca520

Browse files
fix(ci): use proper secrets syntax in if condition
1 parent 3e0aba7 commit 47ca520

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
echo 'package.json for tsr-bridge:'
106106
sed -n '1,200p' apps/tsr-bridge/package.json || true
107107
- name: Build binaries
108-
if: secrets.MAC_CSC_LINK != ''
108+
if: ${{ secrets.MAC_CSC_LINK }}
109109
run: |
110110
# Run binary builds per workspace to ensure electron-builder runs in package cwd
111111
retry() { cmd="$1"; n=0; until [ $n -ge 3 ]; do eval "$cmd" && return 0; n=$((n+1)); echo "Retry $n for: $cmd"; sleep 5; done; return 1; }

0 commit comments

Comments
 (0)