17 lines
No EOL
256 B
YAML
17 lines
No EOL
256 B
YAML
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 |