Skip to content

Commit 7fbfb12

Browse files
committed
fix(ci): disable electron-builder auto publish in release workflow
1 parent eafe822 commit 7fbfb12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-electron.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ jobs:
229229
run: |
230230
if [ "${{ runner.os }}" = "macOS" ] && [ -z "${{ secrets.APPLE_CERTIFICATE }}" ]; then
231231
echo "No Apple certificate, building unsigned Mac package for ${{ matrix.arch }}"
232-
npm run dist:mac:unsigned:${{ matrix.arch }}
232+
npm run dist:mac:unsigned:${{ matrix.arch }} -- --publish never
233233
else
234-
npm run ${{ matrix.dist_cmd }}
234+
npm run ${{ matrix.dist_cmd }} -- --publish never
235235
fi
236236
237237
- name: Upload artifacts to Release

0 commit comments

Comments
 (0)