Docker-files-for-CI/.gitlab-ci.yml
2021-10-20 10:37:51 +00:00

20 lines
343 B
YAML

stages:
- build
- push
build-godot-export:
stage: build
tags:
- shell
script:
- cd godot
- docker build -t khaganat/godot-export:3.3.4 .
when: manual
push-godot-export:
stage: push
tags:
- shell
script:
- docker tag godot-export khaganat/godot-export:3.3.4
- docker push khaganat/godot-export:3.3.4