-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (65 loc) · 1.99 KB
/
docs.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Documentation
on:
push:
branches:
- main
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
# keep in sync with Python version in docs/.readthedocs.yaml
python-version: "3.10"
- name: Build documentation
run: |
cd docs
pip install -r requirements.txt
make html dirhtml
- uses: actions/upload-artifact@v4
with:
name: documentation
path: docs/_build/html/
# Deployment job
deploy:
environment:
name: documentation
url: "https://atlas-docs.ase.cit.tum.de"
runs-on: ubuntu-latest
needs: docs
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: documentation
path: public
- name: Copy site to server
uses: appleboy/scp-action@master
with:
host: atlas-docs.ase.cit.tum.de
username: ${{ vars.DOCS_SSH_USER }}
key: ${{ secrets.DEPLOYMENT_SSH_KEY }}
proxy_host: ${{ vars.DEPLOYMENT_GATEWAY_HOST }}
proxy_username: ${{ vars.DEPLOYMENT_GATEWAY_USER }}
proxy_key: ${{ secrets.DEPLOYMENT_GATEWAY_SSH_KEY }}
proxy_port: ${{ vars.DEPLOYMENT_GATEWAY_PORT }}
source: "public"
target: ${{ vars.DOCS_HOME }}
- name: Move site to www
uses: appleboy/ssh-action@master
with:
host: atlas-docs.ase.cit.tum.de
username: ${{ vars.DOCS_SSH_USER }}
key: ${{ secrets.DEPLOYMENT_SSH_KEY }}
proxy_host: ${{ vars.DEPLOYMENT_GATEWAY_HOST }}
proxy_username: ${{ vars.DEPLOYMENT_GATEWAY_USER }}
proxy_key: ${{ secrets.DEPLOYMENT_GATEWAY_SSH_KEY }}
proxy_port: ${{ vars.DEPLOYMENT_GATEWAY_PORT }}
script: |
rm -rf ${{ vars.DOCS_WWW }}/*
mv -f public/* ${{ vars.DOCS_WWW }}/