Skip to content

Commit 6cf4993

Browse files
committed
github: fix windows release version (#9671)
Use "call" to ensure execution continues after the batch file.
1 parent 8cdba6d commit 6cf4993

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ jobs:
245245
env:
246246
TAG: ${{ steps.git_ref.outputs.tag }}
247247
run: |
248-
build\windows\build-github.bat release
248+
@REMARK 'call' is required to ensure control returns to this script after the batch file finishes.
249+
call build\windows\build-github.bat release
249250
echo on
250251
move out\filament-windows.tgz out\filament-%TAG%-windows.tgz
251252
shell: cmd

0 commit comments

Comments
 (0)