diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 7a83494..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,29 +0,0 @@ -stages: - - build - - deploy - -build: - image: node - stage: build - dependencies: [] - before_script: - - rm package-lock.json - - npm install - script: - - npm run build - cache: - paths: - - node_modules/ - artifacts: - paths: - - dist/ - -deploy: - image: alpine - stage: deploy - dependencies: - - build - before_script: - - which lftp || ( apk --update add lftp ) - script: - - lftp -e "mirror -R ./dist/ samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST \ No newline at end of file