-
-
Notifications
You must be signed in to change notification settings - Fork 144
24 lines (23 loc) · 627 Bytes
/
deploy.yml
File metadata and controls
24 lines (23 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Website
on:
push:
branches:
[ main ]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
if: github.repository == 'teaSummer/MCiSEE'
steps:
- name: Run remote commands
id: run
uses: fifsky/ssh-action@master
with:
host: ${{ secrets.HOST }}
port: ${{ secrets.PORT }}
key: ${{ secrets.KEY }}
command: |
echo ===============================================================
cd /www/wwwroot/mcisee.top
git pull
echo ===============================================================