20 lines
442 B
YAML

name: blog.neet.works deployment
on:
push:
paths:
- 'public/**' # Trigger the workflow when files in the 'public' folder are updated
jobs:
deploy_mamizou:
runs-on: mamizou
run-name: Deploy blog.neet.works on Mamizou
steps:
#evil
- run: |
ssh $USER@localhost -p 2244 "
cd /srv/http/blog.neet.works &&
pwd &&
git pull &&
git checkout
"