-
Notifications
You must be signed in to change notification settings - Fork 213
86 lines (79 loc) · 2.25 KB
/
make-docs.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
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
name: make-docs
on:
release:
types: [released]
workflow_dispatch: # on button click
inputs:
javadocs:
type: boolean
description: 'Build JavaDocs?'
required: true
release:
type: boolean
description: 'Release the docs?'
required: true
env:
ARTIFACTS_DIR: /tmp/artifacts
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup
run: |
mkdir -p $ARTIFACTS_DIR
- name: Build JavaDocs
# run if 'javadocs' is not set to false
if: ${{ !contains(inputs.javadocs, 'false') }}
run: |
VERSION=$(cat VERSION)
mkdir -p $ARTIFACTS_DIR/javadoc
./gradlew javadoc
cp -R build/docs/javadoc/latest $ARTIFACTS_DIR/javadoc/$VERSION
mkdir $ARTIFACTS_DIR/javadoc/latest
cat << EOF > $ARTIFACTS_DIR/javadoc/latest/index.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>Redirecting to latest javadocs</title>
<meta http-equiv="refresh" content="0; URL=../${VERSION}/">
EOF
- name: Build Smithy docs
run: |
cd docs
pip3 install -r requirements.txt
make clean
make html
cp -R build/html/* $ARTIFACTS_DIR
rm $ARTIFACTS_DIR/.buildinfo || true
rm $ARTIFACTS_DIR/objects.inv || true
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: smithy-docs
path: ${{ env.ARTIFACTS_DIR }}
retention-days: 7
publish-docs:
runs-on: ubuntu-latest
# run if 'release' is not set to false
if: ${{ !contains(inputs.release, 'false') }}
needs: build-docs
steps:
- name: Checkout GitHub pages branch
uses: actions/checkout@v4
with:
ref: 'gh-pages'
- name: Download artifacts
id: download
uses: actions/download-artifact@v4
with:
name: smithy-docs
path: /tmp/smithy-docs
- name: Copy artifacts
run: |
cp -R /tmp/smithy-docs/* .
git config --global user.name "smithy-automation"
git config --global user.email "[email protected]"
git add -A
git commit -m "Update documentation"
git push