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

13 lines
285 B
YAML

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