build of setup .exe

This commit is contained in:
2022-02-23 13:43:26 +01:00
parent 36db45d290
commit ba57ff2d82
4 changed files with 63 additions and 3 deletions

10
create_windows_installer.sh Executable file
View File

@@ -0,0 +1,10 @@
unzip -o package.zip
docker rm setup
docker container create --name setup amake/innosetup setup.iss
docker cp ./package setup:/work/
docker cp setup.iss setup:/work/
docker cp LICENSE.md setup:/work/
docker start -i -a setup
docker cp setup:/work/Output/. .
docker rm setup
rm -r package