vylbot-app/.drone.yml
Ethan Lane d7a949da40
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Add DNS settings to ci
2023-09-29 11:57:07 +01:00

88 lines
1.2 KiB
YAML

---
kind: pipeline
name: deployment
pipeline:
docker:
image: plugins/docker
custom_dns: [ 1.1.1.1, 1.0.0.1 ]
steps:
- name: deploy
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
trigger:
event:
- tag
---
kind: pipeline
name: staging
pipeline:
docker:
image: plugins/docker
custom_dns: [ 1.1.1.1, 1.0.0.1 ]
steps:
- name: stage
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
trigger:
branch:
- develop
event:
- push
---
kind: pipeline
name: integration
pipeline:
docker:
image: plugins/docker
custom_dns: [ 1.1.1.1, 1.0.0.1 ]
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