Skip to content

Add mars2mars mappings for currently known atmospheric composition fields #841

Add mars2mars mappings for currently known atmospheric composition fields

Add mars2mars mappings for currently known atmospheric composition fields #841

Workflow file for this run

name: Publish Documentation to sites.ecmwf.int
on:
pull_request:
types: [opened, synchronize, reopened, closed]
push:
branches:
- 'develop'
- 'master'
tags:
- '**'
jobs:
build:
if: ${{ github.event_name == 'pull_request' && github.event.action != 'closed' || github.event_name == 'push'}}
runs-on: ubuntu-latest
outputs:
artifact-id: ${{ steps.upload-doc.outputs.artifact-id }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install python dependencies
run: |
python -m pip install -r docs/requirements.txt
- name: Set Doxygen version
run: echo "DOXYGEN_VERSION=1.13.2" >> "$GITHUB_ENV"
- name: Prepare Doxygen
uses: ecmwf/reusable-workflows/setup-doxygen@main
with:
version: 1.14.0
- name: Build doc
run: |
cd docs
make html -j 32
- name: Archive documentation
id: upload-doc
uses: actions/upload-artifact@v4
with:
name: documentation
path: docs/_build/html
preview-publish:
if: ${{ github.event_name == 'pull_request' && github.event.action != 'closed' }}
needs: build
uses: ecmwf/reusable-workflows/.github/workflows/pr-preview-publish.yml@main
with:
artifact-id: ${{ needs.build.outputs.artifact-id }}
space: docs
name: dev-section
path: multio/pull-requests
link-text: 🌈🌦️📖🚧 Documentation 🚧📖🌦️🌈
secrets:
sites-token: ${{ secrets.ECMWF_SITES_DOCS_DEV_SECTION_TOKEN }}
preview-unpublish:
if: ${{ github.event_name == 'pull_request' && github.event.action == 'closed' }}
uses: ecmwf/reusable-workflows/.github/workflows/pr-preview-unpublish.yml@main
with:
space: docs
name: dev-section
path: multio/pull-requests
secrets:
sites-token: ${{ secrets.ECMWF_SITES_DOCS_DEV_SECTION_TOKEN }}
publish:
if: >-
${{ github.event_name == 'push' && (
github.ref_name == 'develop' ||
github.ref_name == 'master' ||
github.ref_type == 'tag'
) }}
needs: build
uses: ecmwf/reusable-workflows/.github/workflows/docs-publish.yml@main
with:
artifact-id: ${{ needs.build.outputs.artifact-id }}
space: docs
name: dev-section
path: multio
id: ${{ github.ref_name }}
softlink: ${{ github.ref_name == 'master' && 'stable'
|| github.ref_name == 'develop' && 'latest' }}
secrets:
sites-token: ${{ secrets.ECMWF_SITES_DOCS_DEV_SECTION_TOKEN }}