Docker-files-for-CI/.gitlab-ci.yml

14 lines
285 B
YAML
Raw Normal View History

2021-10-19 12:55:57 +00:00
stages:
- build
build-godot-export:
stage: build
tags:
- shell
script:
2021-10-19 13:19:26 +00:00
- cd godot
2021-10-20 15:56:44 +00:00
- docker build -t khaganat/godot-export:3.3.4 .
- docker tag khaganat/godot-export:3.3.4 khaganat/godot-export:3.3.4
2021-10-20 09:14:48 +00:00
- docker push khaganat/godot-export:3.3.4
2021-10-20 15:45:48 +00:00
when: manual