Make a small doc page explaining how to make windows releases

This commit is contained in:
Stepland 2023-03-18 02:59:10 +01:00
parent 306719aeb0
commit 9b8f34e017
2 changed files with 23 additions and 1 deletions

22
docs/Releases.md Normal file
View File

@ -0,0 +1,22 @@
# How to make releases
## Windows (MSYS2)
0. Pull the latest version of the code
0. Follow the [compilation instructions](Compiling.md)
0. Open an MSYS2 x64 terminal
0. `cd` into FEIS's source code root
0. Use the release making script
For a regular semver release
```console
python utils/make_windows.release.py 2.x.x
```
For preview builds
```console
python utils/make_windows.release.py 2.x.x-alpha --timestamp
```
0. Distribute the generated `.zip` file

View File

@ -69,4 +69,4 @@ $ pacman -S \
```
Once this is done, open a new `MSYS2 MinGW x64` terminal and follow the
[compilation instructions](docs/Compiling.md)
[compilation instructions](Compiling.md)