game_sync/.gitlab-ci.yml

20 lines
294 B
YAML

stages:
- build
- deploy
default:
tags:
- game-develop
build-job:
stage: build
script:
- echo "Compiling the code..."
- echo "Compile complete."
deploy-job:
stage: deploy
script:
- echo "Deploying application..."
- echo "Application successfully deployed."