Skip to content

📦More /template fixes #23

📦More /template fixes

📦More /template fixes #23

Workflow file for this run

name: Update Bot
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
deploy-via-sftp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: SFTP Deploy
uses: wlixcc/[email protected]
with:
username: root
server: ${{ secrets.SERVER_IP }}
port: 22
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
local_path: ./*
remote_path: /home/antbot/
args: '-o ConnectTimeout=5'
restart-bot:
needs: [deploy-via-sftp]
runs-on: ubuntu-latest
steps:
- name: Restart Bot via SSH
uses: appleboy/[email protected]
with:
host: ${{ secrets.SERVER_IP }}
username: root
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
echo "Starting or restarting the Antbot service"
sudo systemctl restart antbot-watcher.service
echo "Workflow completed"
script_stop: true
timeout: 60s