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

15 lines
311 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
- build_3.4
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