Skip to content

Commit be73de2

Browse files
authored
Fix build_docs gh action with some minor improvements (CrayLabs#143)
Fix `build_docs` github action that was previously broken. Some other minor improvements were added as part of this fix. Changes include: - `build_docs` action is triggered when we push to develop branch - Previously, it was on PR closed, which isn't necessarily a merge, i.e. a contributor could close a PR without merging and the action would still trigger - Use `GITHUB_TOKEN` instead of personal authentication (PA) credentials to push - Use "[email protected]" as the git author (user) to distinguish automated commits from human commits - Check static files from doc branch into develop, so that we can modify them in a regular PR to `develop`, rather than have to edit the doc branch directly. I'd like for us to get to a point where doc branch pushes are fully automated, so we should never have to modify it directly. - Static files include: `.nojekyll` (both top-level and per-sphinx-build), `CNAME`, and top-level `index.html` [ Committed by @ben-albrecht ] [ Reviewed by @Spartee ]
1 parent b66b077 commit be73de2

File tree

6 files changed

+23
-16
lines changed

6 files changed

+23
-16
lines changed

.docs_static/.nojekyll

Whitespace-only changes.

.docs_static/CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.craylabs.org

.docs_static/index.html

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
<meta http-equiv="refresh" content="0; url=./docs/overview.html" />

.github/workflows/build_docs.yml

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: deploy_dev_docs
22

33
on:
4-
pull_request:
5-
types: [closed]
4+
push:
5+
branches:
6+
- develop
67

78
jobs:
89
build_docs:
@@ -14,28 +15,30 @@ jobs:
1415
with:
1516
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1617

17-
- name: build documentation with docker
18-
run: make docks
19-
2018
- uses: actions/checkout@v2
2119
with:
2220
ref: doc
2321
path: doc-branch
2422

25-
- name: Move over release docs and stubs
23+
- name: Copy over other doc versions from doc branch
2624
run: |
2725
rm -rf doc-branch/docs/develop/
26+
mkdir -p ./docs
2827
cp -r doc-branch/docs/* ./docs/
29-
touch ./docs/.nojekyll
30-
touch ./docs/develop/.nojekyll
3128
rm -rf doc-branch
3229
33-
- name: Commit files and push
30+
- name: build documentation with docker
31+
run: make docks
32+
33+
- name: Commit files
3434
run: |
35-
git config --local user.email "[email protected]"
36-
git config --local user.name "Sam Partee"
37-
git checkout -b doc
38-
git add .
35+
git add -A
36+
git config --local user.email "[email protected]"
37+
git config --local user.name "GitHub Action"
3938
git commit -m "Update develop documentation"
40-
git push --force --quiet "https://spartee:${{ secrets.DOC_PA_TOKEN }}@github.com/CrayLabs/SmartSim" doc:doc
4139
40+
- uses: ad-m/[email protected]
41+
with:
42+
github_token: ${{ secrets.GITHUB_TOKEN }}
43+
branch: doc
44+
force: true

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,13 @@ docs:
9393
# help: docks - generate project documentation with docker
9494
.PHONY: docks
9595
docks:
96-
@if [ -d "docs" ]; then rm -rf docs; fi
96+
@rm -rf docs/develop
9797
@mkdir -p docs
9898
@docker compose build --progress=plain docs-dev
9999
@docker create -ti --name devdocs smartsim-docs:dev-latest
100-
@docker cp devdocs:/usr/local/src/SmartSim/doc/_build/html/ ./docs/develop/
100+
@docker cp devdocs:/usr/local/src/SmartSim/doc/_build/html/ ./docs/develop
101101
@docker container rm devdocs
102+
@cp -r .docs_static/. ./docs/
102103

103104
# help: cov - generate html coverage report for Python client
104105
.PHONY: cov

doc/_static/.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)