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

13 lines
265 B
YAML

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