Files
warframe-center/.drone.yml
Anatoly 5aab4a955b
Some checks failed
continuous-integration/drone/push Build is failing
Source interactive shell files
2022-03-30 03:05:20 +03:00

62 lines
1.2 KiB
YAML

kind: pipeline
type: ssh
name: install dependencies
server:
host: warframe.center
user: webmaster
ssh_key:
from_secret: ssh_private_key
clone:
disable: true
steps:
- name: fetch remote
commands:
- cd /home/webmaster/warframe-center && git fetch --all && git reset --hard origin/monorepo
- name: install dependencies
commands:
- source ~/.bashrc
- source ~/.profile
- cd /home/webmaster/warframe-center && npm install
trigger:
branch:
- monorepo
---
kind: pipeline
type: docker
name: build
clone:
disable: true
steps:
- name: bulid frontend
image: node:16
environment:
SSH_PRIVATE_KEY:
from_secret: ssh_private_key
MONGODB_URI:
from_secret: MONGODB_URI
commands:
- git clone -b monorepo https://git.radner.ru/anatolykopyl/warframe-center.git
- cd warframe-center
- npm install
- npm run build -w app
- mkdir ~/.ssh
- echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
- chmod 400 ~/.ssh/id_rsa
- scp -o StrictHostKeyChecking=no -r ./app/.next webmaster@warframe.center:~/warframe.center
- ssh -o StrictHostKeyChecking=no webmaster@warframe.center "pm2 restart warframe-center-app-3000"
depends_on:
- install dependencies
trigger:
branch:
- monorepo