Implement initial guide #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Git repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Cache Python environment | |
uses: actions/cache@v3 | |
id: cache-python | |
with: | |
path: .venv | |
key: .venv-${{ hashFiles('requirements.txt') }} | |
- name: Install base Apt packages | |
id: cache-apt | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
execute_install_scripts: true | |
packages: graphviz libgraphviz-dev librsvg2-bin pdf2svg | |
version: 1.0 | |
- name: Apt-Cache-Action | |
uses: Eeems-Org/apt-cache-action@v1 | |
with: | |
packages: texlive-base texlive-latex-extra | |
- name: Build website | |
shell: bash | |
run: | | |
tree src/_static/images | |
make prod | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: 'dist' | |
deploy: | |
needs: build | |
if: ${{ github.ref == 'refs/heads/main' }} | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |