blob: fbe28fbebdf669ba3a759ce7bdf66016016c114b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
on:
push:
paths:
- 'static/**'
- 'content/**'
- 'templates/**'
jobs:
deploy:
runs-on: self-hosted
steps:
- id: step1
run: |
cd /var/www/
git pull
zola build
|