diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e03d042 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +stages: + - build + - push + +build-godot-export: + stage: build + tags: + - shell + script: + - docker build -t khaganat/godot-export:latest . + +push-godot-export: + stage: push + tags: + - shell + script: + - docker push khaganat/godot-export:latest \ No newline at end of file