Docker-files-for-CI/.gitlab-ci.yml
2021-10-20 15:53:26 +00:00

13 lines
278 B
YAML

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