33 lines
No EOL
781 B
YAML
33 lines
No EOL
781 B
YAML
# Use the latest 2.1 version of CircleCI pipeline process engine.
|
|
# See: https://circleci.com/docs/2.0/configuration-reference
|
|
version: 2.1
|
|
|
|
workflows:
|
|
clone-and-run:
|
|
jobs:
|
|
- clone
|
|
#filters:
|
|
# branches:
|
|
# only: main
|
|
- deploy
|
|
#requires:
|
|
# - clone
|
|
#filters:
|
|
# branches:
|
|
# only: main
|
|
|
|
jobs:
|
|
clone:
|
|
machine:
|
|
image: "ubuntu-2004:current"
|
|
steps:
|
|
- run:
|
|
name: Clone
|
|
command: ssh root@35.190.218.192 "cd /etc/BotYam && gh repo sync"
|
|
deploy:
|
|
machine:
|
|
image: "ubuntu-2004:current"
|
|
steps:
|
|
- run:
|
|
name: Deploy Over SSH
|
|
command: ssh root@35.190.218.192 "cd /etc/BotYam && docker-compose up -d --build" |