1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00

Fix --installer

This commit is contained in:
Elias Steurer 2023-08-12 12:18:39 +02:00
parent 4bd6cc3da1
commit b1cc1587eb
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ standalone_windows:
extends:
- .base_windows_build
script:
- python Tools/build.py --type=release --use-aqt -installer --deploy-version
- python Tools/build.py --type=release --use-aqt --installer --deploy-version
standalone_osx:
stage: build
@ -17,7 +17,7 @@ standalone_linux:
extends:
- .base_linux_build
script:
- python3 Tools/build.py --type=release --use-aqt -installer --deploy-version
- python3 Tools/build.py --type=release --use-aqt --installer --deploy-version
steam_windows:
stage: build_steam
@ -38,4 +38,4 @@ steam_linux:
extends:
- .base_linux_build
script:
- python3 Tools/build.py --type=release -steam --deploy-version --use-aqt -installer
- python3 Tools/build.py --type=release -steam --deploy-version --use-aqt --installer

View File

@ -3,7 +3,7 @@ steam_linux:
extends:
- .base_linux_build
script:
- python3 Tools/build.py --type=release --steam --deploy-version --use-aqt -installer --tag $CI_COMMIT_TAG
- python3 Tools/build.py --type=release --steam --deploy-version --use-aqt --installer --tag $CI_COMMIT_TAG
rules:
- if: "$CI_COMMIT_TAG"