forked from ufs-community/uwtools
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (33 loc) · 839 Bytes
/
Copy pathdocs.yaml
File metadata and controls
33 lines (33 loc) · 839 Bytes
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
name: Documentation
on:
push:
branches:
- develop
- feature/*
- main/*
- bugfix/*
paths:
- docs/**
pull_request:
types: [opened, reopened, synchronize]
jobs:
create_documentation:
runs-on: ubuntu-latest
name: Deploy Documentation
steps:
- uses: actions/checkout@v3
- name: Install conda
run: .github/scripts/install-conda
- name: Build Documentation
run: .github/scripts/build-documentation
- uses: actions/upload-artifact@v3
if: always()
with:
name: Upload Documentation Artifacts
path: artifact/documentation
- uses: actions/upload-artifact@v3
if: failure()
with:
name: Upload Warnings Log
path: artifact/doc_warnings.log
if-no-files-found: ignore