gbe_fork/build_win_clean.bat
ota 90b403fb3d + add package scripts
+ add steps: package + release to add packaged build to release when pushing on tag

+ support building on prefixed branch name with wildcard

+ support event trigger on tag

+ support event trigger on workflow dispatch for manual trigger
2023-12-18 02:50:05 +02:00

22 lines
393 B
Batchfile

@echo off
setlocal
pushd "%~dp0"
if /i "%~1"=="clean" (
rmdir /s /q "build-win" >nul 2>&1
)
del /f /q *.exp >nul 2>&1
del /f /q *.lib >nul 2>&1
del /f /q *.a >nul 2>&1
del /f /q *.obj >nul 2>&1
del /f /q *.pdb >nul 2>&1
del /f /q *.ilk >nul 2>&1
del /f /q dll\net.pb.cc >nul 2>&1
del /f /q dll\net.pb.h >nul 2>&1
rmdir /s /q "build-win-temp" >nul 2>&1
endlocal
popd