Skip to content

Commit e30066a

Browse files
committed
Add supprot to publish docs to nRF github.io
This helps get a shareable link, easier to review rendered docs. Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
1 parent c378c83 commit e30066a

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Documentation Build
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
branches:
7+
- main
8+
paths:
9+
- '.github/workflows/docs-build-and-publish.yml'
10+
- 'nrf70_bm_lib/docs/**'
11+
push:
12+
branches:
13+
- main
14+
15+
jobs:
16+
docs-build-and-publish:
17+
runs-on: ubuntu-latest
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.ref }}
20+
cancel-in-progress: true
21+
permissions:
22+
contents: write
23+
steps:
24+
- name: Checkout code
25+
uses: actions/checkout@v4
26+
27+
- name: Install dependencies
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install -y python3 python3-pip
31+
32+
- name: Install Python dependencies
33+
working-directory: nrf70_bm_lib/docs/
34+
run: |
35+
python3 -m pip install -r requirements.txt
36+
37+
- name: Build documentation
38+
run: ./build_docs.sh
39+
40+
- name: Upload artifact
41+
uses: actions/upload-artifact@v4
42+
with:
43+
name: doc-build
44+
if-no-files-found: error
45+
retention-days: 2
46+
path: |
47+
nrf70_bm_lib/docs//build/html/
48+
49+
- name: Update gh-pages
50+
if: ${{ github.event_name == 'push' }}
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
run: |
54+
git config --global --add safe.directory "$(pwd)"
55+
git config --global user.name "GitHub Actions"
56+
git config --global user.email "actions@github.com"
57+
58+
git fetch origin gh-pages
59+
git checkout gh-pages || git checkout -b gh-pages
60+
git rebase origin/gh-pages
61+
62+
# Update docs
63+
rm -rf docs/html
64+
cp -r docs/build/html docs/html
65+
rm -rf docs/build
66+
67+
# Create commit with doc updates
68+
git add docs/html
69+
git commit -m "Updating documentation based on ${{ github.sha }}"
70+
71+
# Push changes
72+
git push origin gh-pages:gh-pages

0 commit comments

Comments
 (0)