File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed
Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -164,12 +164,25 @@ jobs:
164164 - name : List debug build directory
165165 run : |
166166 dir "${{ runner.workspace }}/DebugBuild/Debug"
167+
168+ - name : Archive release library
169+ uses :
thedoctor0/[email protected] 170+ with :
171+ type : ' zip'
172+ directory : ' ${{ runner.workspace }}'
173+ path : ' ${{ runner.workspace }}/ReleaseBuild/Release'
174+ filename : ' Release.zip'
175+ exclusions : ' *.exp *.lib *.pdb'
176+
177+ - name : Archive debug library
178+ uses :
thedoctor0/[email protected] 179+ with :
180+ type : ' zip'
181+ directory : ' ${{ runner.workspace }}'
182+ path : ' ${{ runner.workspace }}/DebugBuild/Debug'
183+ filename : ' Debug.zip'
184+ exclusions : ' *.exp *.lib *.pdb'
167185
168- - name : Compress libraries for upload
169- run : |
170- Compress-Archive -Path "${{ runner.workspace }}/ReleaseBuild/Release/enet.dll" -DestinationPath "${{ runner.workspace }}/Release.zip
171- Compress-Archive -Path "${{ runner.workspace }}/DebugBuild/Debug/enet.dll" -DestinationPath "${{ runner.workspace }}/Debug.zip
172-
173186 - name : Upload release library
174187 id : upload-release-asset
175188 uses : actions/upload-release-asset@master
You can’t perform that action at this time.
0 commit comments