Docker-files-for-CI/.gitlab-ci.yml

38 lines
862 B
YAML
Raw Normal View History

2021-10-19 12:55:57 +00:00
stages:
2021-11-13 15:51:54 +00:00
- build_3.3.4
2022-01-24 10:17:41 +00:00
- build_4
- build_compil
2021-10-19 12:55:57 +00:00
build-godot-export:
2021-11-13 15:51:54 +00:00
stage: build_3.3.4
2021-10-19 12:55:57 +00:00
tags:
- shell
script:
2021-10-19 13:19:26 +00:00
- cd godot
2021-10-20 15:56:44 +00:00
- docker build -t khaganat/godot-export:3.3.4 .
- docker tag khaganat/godot-export:3.3.4 khaganat/godot-export:3.3.4
2021-10-20 09:14:48 +00:00
- docker push khaganat/godot-export:3.3.4
2021-10-20 15:45:48 +00:00
when: manual
2022-01-24 10:17:41 +00:00
build-godot4-export:
stage: build_4
tags:
- shell
script:
2022-01-24 10:18:35 +00:00
- cd godot4
2022-01-24 10:17:41 +00:00
- 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 .
2022-01-30 14:45:36 +00:00
- docker tag khaganat/godot-compil:4 khaganat/godot-compil:latest
- docker push khaganat/godot-compil:latest
when: manual