Skip to content

Commit 313c003

Browse files
committed
Workflows without -- again
1 parent 2b0fd3d commit 313c003

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/integration-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
run: pnpm --color=always build:resources
215215

216216
- name: Build Electron app
217-
run: pnpm --color=always build:app:dir -- --${{ matrix.arch }}
217+
run: pnpm --color=always build:app:dir --${{ matrix.arch }}
218218

219219
- name: Run integration tests (Linux)
220220
id: integration-tests-linux

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222
for var in APPLEID APPLEIDPASS APPLETEAMID CSC_LINK CSC_KEY_PASSWORD CSC_INSTALLER_LINK CSC_INSTALLER_KEY_PASSWORD; do
223223
test -n "${!var}" || unset $var
224224
done
225-
pnpm --color=always build:app -- \
225+
pnpm --color=always build:app \
226226
dmg pkg \
227227
--${{ matrix.arch }}
228228
env:
@@ -300,15 +300,15 @@ jobs:
300300
- name: Build Electron app (Linux)
301301
if: runner.os == 'Linux'
302302
run: |
303-
pnpm --color=always build:app -- \
303+
pnpm --color=always build:app \
304304
AppImage deb rpm \
305305
--${{ matrix.arch }}
306306
307307
- name: Build Electron app (Windows)
308308
if: runner.os == 'Windows'
309309
shell: bash
310310
run: |
311-
pnpm --color=always build:app -- \
311+
pnpm --color=always build:app \
312312
msi nsis \
313313
--${{ matrix.arch }}
314314

0 commit comments

Comments
 (0)