rom-properties/appveyor-artifacts.cmd
David Korth 000739724c appveyor-artifacts.cmd: Enable ECHO to try to debug artifacts.
AppVeyor isn't saving artifacts, even though it should be saving them...
2023-07-05 18:29:31 -04:00

10 lines
253 B
Batchfile

@ECHO ON
if not "%compiler%" == "msvc2015" exit /b 0
if not "%configuration%" == "Release" exit /b 0
cpack --version
cpack -C "%configuration%"
if ERRORLEVEL 1 exit /b %ERRORLEVEL%
for %%z in (*.zip) do appveyor PushArtifact "%%z"
exit /b %ERRORLEVEL%