Skip to content

Commit

Permalink
fix makerelease so it adds dll to zip files
Browse files Browse the repository at this point in the history
  • Loading branch information
molsonkiko committed Jan 14, 2024
1 parent 8fced26 commit 976a18f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths-ignore:
- 'docs/**'
- 'NppCSharpPluginPack/*.zip'
- '*.md'
- '*.txt'
- '*.PNG'
Expand Down
Binary file modified NppCSharpPluginPack/Release_x64.zip
Binary file not shown.
Binary file modified NppCSharpPluginPack/Release_x86.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions makerelease.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ xcopy .\testfiles .\NppCSharpPluginPack\bin\Release\testfiles\ /s /y
: also copy directories to Downloads for easy access later
cd NppCSharpPluginPack\bin\Release-x64
xcopy . "%userprofile%\Downloads\NppCSharpPluginPack NEWEST x64\" /s /y
7z -r a ..\..\Release_x64.zip NppCSharpPluginPack.dll testfiles
7z -r a ..\..\Release_x64.zip CSharpPluginPack.dll testfiles
cd ..\Release
xcopy . "%userprofile%\Downloads\NppCSharpPluginPack NEWEST x86\" /s /y
7z -r a ..\..\Release_x86.zip NppCSharpPluginPack.dll testfiles
7z -r a ..\..\Release_x86.zip CSharpPluginPack.dll testfiles
cd ..\..\..

0 comments on commit 976a18f

Please sign in to comment.