From 5ce5c2e0d72effdbda483493a937fbbc876caf22 Mon Sep 17 00:00:00 2001 From: Nikolay Vigdorov Date: Sun, 13 Jun 2021 11:53:19 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ce8e4b2 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: alpine:latest + +stages: + - deploy + +deploy: + stage: deploy + script: + - cd ~/crypto-bot-dev/front-admin + - git fetch && git pull + - npm i + - npm run build + only: + - master