-
-
Notifications
You must be signed in to change notification settings - Fork 182
39 lines (33 loc) · 935 Bytes
/
build.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
# Builds and deploys the documentation on updates
name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
# For setup, see https://www.mkdocs.org/#installation
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
# Now we can build the thing
- name: Build the documentation
run: ./scripts/build.sh
# Deploy to the server
- name: Deploy to production
uses: easingthemes/[email protected]
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
ARGS: "-vzhr"
SOURCE: "build/"
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: ${{ secrets.REMOTE_USER }}
TARGET: ${{ secrets.TARGET }}