From 666d1fbaefddd63cfb0969e7cc8415f15fc71e82 Mon Sep 17 00:00:00 2001 From: Dalton Date: Wed, 5 Dec 2018 21:02:41 -0800 Subject: [PATCH] basic.yml --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..7dca449 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +stages: + - test + - build + - deploy + +test: + stage: test + script: echo "Running tests" + +build: + stage: build + script: echo "Building the app" + +deploy_staging: + stage: deploy + script: + - echo "Deploy to staging server" + environment: + name: staging + url: https://daniels.coolserver.com/file/path/to/discord/js/file.js + only: + - master \ No newline at end of file