-
-
Notifications
You must be signed in to change notification settings - Fork 231
42 lines (36 loc) · 1.11 KB
/
build.yml
File metadata and controls
42 lines (36 loc) · 1.11 KB
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
40
41
42
# 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@v4
with:
fetch-depth: 0 # Needed for the revisions plugin to work
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
pip install mkdocs-git-revision-date-localized-plugin
# Now we can build the thing
- name: Build the documentation
run: ./scripts/build.sh
# Deploy to the server
- name: Deploy to production
uses: easingthemes/ssh-deploy@v5.1.0
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
ARGS: "-vzhr --delete" # verbose, compress, human-readble, recursive, delete
SOURCE: "build/"
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: ${{ secrets.REMOTE_USER }}
TARGET: ${{ secrets.TARGET }}