Docker-files-for-CI/.gitlab-ci.yml
2022-01-30 15:47:09 +01:00

37 lines
867 B
YAML

stages:
- build_3.3.4
- build_4
- build_compil
build-godot-export:
stage: build_3.3.4
tags:
- shell
script:
- cd godot
- docker build -t khaganat/godot-export:3.3.4 .
- docker tag khaganat/godot-export:3.3.4 khaganat/godot-export:3.3.4
- docker push khaganat/godot-export:3.3.4
when: manual
build-godot4-export:
stage: build_4
tags:
- shell
script:
- cd godot4
- docker build -t khaganat/godot-export:4 .
- docker tag khaganat/godot-export:4 khaganat/godot-export:4
- docker push khaganat/godot-export:4
when: manual
build-godot-compil:
stage: build_compil
tags:
- shell
script:
- cd godot4-compil
- docker build -t khaganat/godot-compil:latest .
- docker tag khaganat/godot-compil:latest khaganat/godot-compil:latest
- docker push khaganat/godot-compil:latest
when: manual