Compare commits

..

No commits in common. "1c3ba40b56aeb6b7191af2dae5c9251dfd3c67f6" and "19b6cb033cead2ea4419d5efbc914faf8363d9e1" have entirely different histories.

View file

@ -1,76 +0,0 @@
---
kind: pipeline
type: ssh
name: deployment
server:
host: 192.168.68.121
user: vylpes
password:
from_secret: ssh_password
steps:
- name: deploy
commands:
- sh /home/vylpes/scripts/vylbot/deploy_prod.sh
trigger:
branch:
- main
event:
- promote
target:
- production
---
kind: pipeline
type: ssh
name: staging
server:
host: 192.168.68.121
user: vylpes
password:
from_secret: ssh_password
steps:
- name: deploy
commands:
- sh /home/vylpes/scripts/vylbot/deploy_stage.sh
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