-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Hien To <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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] | ||
|