2023-01-27 17:41:05 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
name: deployment
|
|
|
|
|
2023-02-03 18:01:06 +00:00
|
|
|
steps:
|
2023-02-03 18:02:40 +00:00
|
|
|
- name: deploy
|
2023-02-03 18:01:06 +00:00
|
|
|
image: appleboy/drone-ssh
|
|
|
|
settings:
|
|
|
|
host: 192.168.68.121
|
|
|
|
username: vylpes
|
|
|
|
password:
|
|
|
|
from_secret: ssh_password
|
|
|
|
port: 22
|
|
|
|
script:
|
|
|
|
- sh /home/vylpes/scripts/vylbot/deploy_prod.sh
|
2023-01-27 17:41:05 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
event:
|
|
|
|
- promote
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
name: staging
|
|
|
|
|
2023-02-03 18:01:06 +00:00
|
|
|
steps:
|
2023-02-03 18:02:40 +00:00
|
|
|
- name: stage
|
2023-02-03 18:01:06 +00:00
|
|
|
image: appleboy/drone-ssh
|
|
|
|
settings:
|
|
|
|
host: 192.168.68.121
|
|
|
|
username: vylpes
|
|
|
|
password:
|
|
|
|
from_secret: ssh_password
|
|
|
|
port: 22
|
|
|
|
script:
|
|
|
|
- sh /home/vylpes/scripts/vylbot/deploy_stage.sh
|
2023-01-27 17:41:05 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- develop
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
name: integration
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- yarn install --frozen-lockfile
|
|
|
|
- yarn build
|
|
|
|
|
|
|
|
- name: test
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- yarn install --frozen-lockfile
|
|
|
|
- yarn test
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
- develop
|
|
|
|
- hotfix/*
|
|
|
|
- feature/*
|
|
|
|
- renovate/*
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|