forked from Unidata/MetPy
-
Notifications
You must be signed in to change notification settings - Fork 0
151 lines (129 loc) · 4.26 KB
/
docs.yml
File metadata and controls
151 lines (129 loc) · 4.26 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: Build Docs
# We don't want pushes (or PRs) to gh-pages to kick anything off
on:
push:
branches:
- main
- '[0-9]+.[0-9]+.x'
tags:
- v[0-9]+.[0-9]+.[0-9]+
pull_request:
concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
#
# Build our docs on Linux against multiple Pythons
#
Docs:
name: "Linux ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.11, 3.12, 3.13]
check-links: [false]
include:
- python-version: 3.14
check-links: true
outputs:
doc-version: ${{ steps.build-docs.outputs.doc-version }}
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
fetch-depth: 150
persist-credentials: false
# Can't use fetch-tags on a tag apparently. See actions/checkout#1467.
- name: Get tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Install using PyPI
uses: ./.github/actions/install-pypi
with:
type: 'doc'
python-version: ${{ matrix.python-version }}
need-extras: true
need-cartopy: true
- name: Build docs
id: build-docs
uses: ./.github/actions/build-docs
with:
run-linkchecker: ${{ github.event_name == 'pull_request' && matrix.check-links == true }}
key: ${{ runner.os }}-${{ matrix.python-version }}
Deploy:
if: ${{ github.event_name != 'pull_request' }}
needs: Docs
environment:
name: github-pages
runs-on: ubuntu-slim
env:
DOC_VERSION: dev
permissions:
contents: write
steps:
- name: Download doc build
uses: actions/download-artifact@v7
with:
name: Linux-3.13-docs
path: ./docs/build/html
# This overrides the version "dev" with the proper version if we're building off a
# branch that's not main (which is confined to n.nn.x above) or on a tag.
- name: Set doc version
if: ${{ github.event_name != 'push' || !contains(github.ref, 'main') }}
run: echo "DOC_VERSION=v${{ needs.Docs.outputs.doc-version }}" >> $GITHUB_ENV
- name: Export doc version
run: echo "doc-version=${{ env.DOC_VERSION }}" >> $GITHUB_OUTPUT
- name: Upload to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html
exclude_assets: '.buildinfo,_static/jquery-*.js,_static/underscore-*.js'
destination_dir: ./${{ env.DOC_VERSION }}
keep_files: false
full_commit_message: Deploy ${{ env.DOC_VERSION }} to GitHub Pages
UpdateVersions:
needs: Deploy
if: ${{ needs.Deploy.outputs.doc-version != 'dev' }}
name: "Manage doc versions"
environment:
name: github-pages
runs-on: ubuntu-slim
permissions:
contents: write
steps:
- name: Checkout docs
uses: actions/checkout@v6
with:
ref: "gh-pages"
- name: Set up Python
uses: actions/setup-python@v6
- name: Install packaging
run: python -m pip install packaging
- name: Update listing of versions
run: |
python << EOF
import json
from pathlib import Path
from packaging import version
# Get all paths that are versions
vers = sorted(version.parse(str(p)) for p in Path().glob('v[0-9]*'))
# Set up our version dictionary
versions = dict(versions=['latest', 'dev'],
latest=f'v{vers[-1].major}.{vers[-1].minor}', prereleases=[])
versions['versions'].extend(f'v{v.major}.{v.minor}' for v in vers[-4:])
# Write to JSON file
with open('versions.json', 'wt') as verfile:
json.dump(versions, verfile)
# Update the 'latest' symlink
latest = Path('latest')
latest.unlink(missing_ok=True)
latest.symlink_to(versions['latest'], target_is_directory=True)
EOF
- name: Commit changes
run: |
git config user.name $GITHUB_ACTOR
git config user.email $GITHUB_ACTOR@users.noreply.github.com
git add latest versions.json
git commit -am "Update version listing and latest link" || true
git push