From 3e98c34d21ebc28a01e8409cafd860ecf8022952 Mon Sep 17 00:00:00 2001 From: Agatha Rose Date: Sun, 26 Apr 2020 15:34:43 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..124cfd9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +# haha imagine testing your code +stages: + deploy + +production: + stage: deploy + script: + - git remote add heroku https://heroku:$HEROKU_API_KEY@git.heroku.com/discordinator9000.git + - git push -qf heroku HEAD:master + only: + - master \ No newline at end of file