Fix only syntax in export jobs
This commit is contained in:
parent
280806ae2d
commit
22139ca0e2
|
@ -22,42 +22,40 @@ export:html5:
|
||||||
script:
|
script:
|
||||||
- GODOT=./bin/godot3-server make export-html5
|
- GODOT=./bin/godot3-server make export-html5
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
|
||||||
- build/
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-html5
|
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-html5
|
||||||
|
paths:
|
||||||
|
- build/
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
|
||||||
export:windows:
|
export:windows:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- GODOT=./bin/godot3-server make export-windows
|
- GODOT=./bin/godot3-server make export-windows
|
||||||
artifacts:
|
artifacts:
|
||||||
|
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-windows
|
||||||
paths:
|
paths:
|
||||||
- build/
|
- build/
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
name: "$CI_PROJECT_NAME"-windows
|
|
||||||
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-windows
|
|
||||||
|
|
||||||
export:osx:
|
export:osx:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- GODOT=./bin/godot3-server make export-osx
|
- GODOT=./bin/godot3-server make export-osx
|
||||||
artifacts:
|
artifacts:
|
||||||
|
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-osx
|
||||||
paths:
|
paths:
|
||||||
- build/
|
- build/
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
name: "$CI_PROJECT_NAME"-osx
|
|
||||||
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-osx
|
|
||||||
|
|
||||||
export:linux:
|
export:linux:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- GODOT=./bin/godot3-server make export-linux
|
- GODOT=./bin/godot3-server make export-linux
|
||||||
artifacts:
|
artifacts:
|
||||||
|
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-linux
|
||||||
paths:
|
paths:
|
||||||
- build/
|
- build/
|
||||||
name: "$CI_PROJECT_NAME"-"$CI_COMMIT_REF_NAME"-linux
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue