-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (43 loc) · 1.23 KB
/
build_docs_latest.yml
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
# Github CD workflow file for building SCHISM-ESMF documentation
#
# SPDX-FileCopyrightText: 2022 SCHISM development team
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileContributor Jamal Uddin Khan
# SPDX-FileContributor Carsten Lemmen <[email protected]
name: stable documentation
on:
push:
branches:
- master
- docs
jobs:
deploy:
runs-on: ubuntu-latest
on:
push:
paths:
- 'doc/*md'
- mkdocs.yml
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install python packages
run: pip install mkdocs-material==8.3.4 mike
- name: Configure git user
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Get tag of the version
uses: olegtarasov/[email protected]
id: tag_name
- name: Deploy with mike
run: |
mike deploy --force --update-aliases master stable
mike retitle master stable
mike set-default --push stable