Install texlive-full #6
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
name: Docs | |
on: | |
push: | |
branches: | |
- "feature/cd-docs" | |
tags: | |
- '**' | |
workflow_dispatch: ~ | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout atlas-docs | |
uses: actions/checkout@v4 | |
with: | |
repository: ecmwf/atlas-docs | |
- name: checkout atlas source | |
uses: actions/checkout@v4 | |
with: | |
path: atlas-source | |
ref: master | |
- name: install doxygen and latex | |
run: sudo apt install doxygen texlive-full | |
- name: build docs | |
run: make PUBLIC=1 WITH_ECKIT=1 WITH_DOXYGEN=1 ATLAS_SOURCE_DIR=atlas-source clean html | |
- name: publish | |
uses: ecmwf-actions/reusable-workflows/ecmwf-sites-upload@v2 | |
with: | |
token: ${{ secrets.ECMWF_SITES_TOKEN }} | |
path: build/html | |
space: docs | |
name: atlas |