Docker-files-for-CI/.gitlab-ci.yml
2021-10-19 13:19:26 +00:00

19 lines
287 B
YAML

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