image: node:lts stages: - build - deploy build: stage: build script: - cd /builds/gitlab/$CI_PROJECT_PATH/public - npm install - npm run build - npx tsc artifacts: paths: - public only: - master pages: stage: deploy script: - apt-get update -qy - apt-get install -y rsync - echo "Deploying to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/" artifacts: paths: - public only: - master