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

21 lines
343 B
YAML
Raw Normal View History

2021-10-19 12:55:57 +00:00
stages:
- build
- push
build-godot-export:
stage: build
tags:
- shell
script:
2021-10-19 13:19:26 +00:00
- cd godot
2021-10-20 09:14:48 +00:00
- docker build -t khaganat/godot-export:3.3.4 .
2021-10-19 13:19:26 +00:00
when: manual
2021-10-19 12:55:57 +00:00
push-godot-export:
stage: push
tags:
- shell
script:
2021-10-20 10:37:51 +00:00
- docker tag godot-export khaganat/godot-export:3.3.4
2021-10-20 09:14:48 +00:00
- docker push khaganat/godot-export:3.3.4