blob: 7087976f6cf943ffd19e797968ab8dd7eb1e195b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy
uses: appleboy/ssh-action@cc051b07ed0666619f6ea5703319edf00d06be13
with:
key: ${{ secrets.SSH_KEY }}
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
port: ${{ secrets.SSH_PORT }}
script: |
set -e
cd nil.ninja
git fetch --prune origin
git restore -- .
git clean -fd
git switch -d origin/main
git submodule update --init
make deploy
|