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