Skip to content

Commit

Permalink
Correct robocopy command (#87)
Browse files Browse the repository at this point in the history
Co-authored-by: Hien To <[email protected]>
  • Loading branch information
hiento09 and hiento09 authored Oct 20, 2023
1 parent f9a1f13 commit daea19c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,10 @@ jobs:
- name: Pack artifacts
id: pack_artifacts
shell: cmd
run: |
$dst='.\build\Release'
robocopy build_deps\_install\bin\zlib.dll $dst
robocopy build\bin\Release\llama.dll $dst
robocopy build_deps\_install\bin .\build\Release zlib.dll
robocopy build\bin\Release .\build\Release llama.dll
7z a nitro.zip .\build\Release\*
- uses: actions/[email protected]
Expand Down Expand Up @@ -332,9 +332,8 @@ jobs:
run: |
set PATH=%PATH%;C:\Program Files\7-Zip\
echo %PATH%
$dst='.\build\Release'
robocopy build_deps\_install\bin\zlib.dll $dst
robocopy build\bin\Release\llama.dll $dst
robocopy build_deps\_install\bin .\build\Release zlib.dll
robocopy build\bin\Release .\build\Release llama.dll
7z a nitro.zip .\build\Release\*
- uses: actions/[email protected]
Expand Down

0 comments on commit daea19c

Please sign in to comment.