Skip to content

Commit

Permalink
Merge branch 'main' into chore/documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximilianAnzinger authored Dec 6, 2024
2 parents 93b6ea5 + d05d56c commit 4e916b7
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 }}/

0 comments on commit 4e916b7

Please sign in to comment.