You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
527 B
YAML
23 lines
527 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Restart !charity Bot via SSH
|
|
uses: fifsky/ssh-action@master
|
|
with:
|
|
command: |
|
|
cd exclamation-mark-charity/
|
|
sudo systemctl stop exclamation-mark-charity.service
|
|
bash backup.sh
|
|
git pull
|
|
sudo systemctl start exclamation-mark-charity.service
|
|
host: ${{ secrets.HOST }}
|
|
key: ${{ secrets.SSH_PRIVATE_KEY }} |