pipeline: build_web: image: node commands: - cd web - node --version - npm ci - npm run build deploy: image: rclone/rclone commands: - "rclone sync ./spec :sftp:./spec --sftp-host frontier.gwei.cz --sftp-user gweicz-sysinfo --sftp-port 2022 --sftp-pass $RCLONE_PASS -v" - "rclone sync ./web/build :sftp:./web/build --sftp-host frontier.gwei.cz --sftp-user gweicz-sysinfo --sftp-port 2022 --sftp-pass $RCLONE_PASS -v" secrets: [RCLONE_PASS] when: branch: [master]