Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
hzqst committed Feb 25, 2024
1 parent eefe8ca commit 5e43556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ jobs:
- name: Copy Build to Output
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
copy "node.exe" "Output" /y
for /f "delims=" %%i in ('where node') do set NODE_PATH=%%i
copy "%NODE_PATH%" "Output\node.exe" /y
xcopy "build" "Output" /y /e
shell: cmd

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/msbuild_win7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ jobs:
- name: Copy Build to Output
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
copy "node.exe" "Output" /y
for /f "delims=" %%i in ('where node') do set NODE_PATH=%%i
copy "%NODE_PATH%" "Output\node.exe" /y
xcopy "build" "Output" /y /e
shell: cmd

Expand Down

0 comments on commit 5e43556

Please sign in to comment.