diff --git a/TimberWinR.sln b/TimberWinR.sln index 75d1761..45e7f6f 100644 --- a/TimberWinR.sln +++ b/TimberWinR.sln @@ -19,6 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution appveyor.yml = appveyor.yml LICENSE.txt = LICENSE.txt README.md = README.md + save_artifact.bat = save_artifact.bat showenv.bat = showenv.bat EndProjectSection EndProject diff --git a/save_artifact.bat b/save_artifact.bat new file mode 100644 index 0000000..82d7976 --- /dev/null +++ b/save_artifact.bat @@ -0,0 +1,8 @@ +echo "Running Deployment" +set +dir +mkdir TimberWinR.Builds\%APPVEYOR_BUILD_VERSION% +copy "TimberWix/bin/%Configuration%/TimberWinR-%APPVEYOR_BUILD_VERSION%.0.msi" "TimberWinR.Builds\%APPVEYOR_BUILD_VERSION%" +dir /s "TimberWinR.Builds" +git add TimberWinR.Builds.%APPVEYOR_BUILD_VERSION%/TimberWinR-%APPVEYOR_BUILD_VERSION%.0.msi +git commit -m"Added %APPVEYOR_BUILD_VERSION% MSI"