Skip to content

Commit d125f4a

Browse files
authored
Merge pull request #9 from rcjackson/auto_docs
ADD: Build artifiacts to build-docs
2 parents 3c51b61 + c10645d commit d125f4a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-docs.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,17 @@ jobs:
4040
run: |
4141
cd docs
4242
make html
43-
43+
4444
- name: Deploy to GitHub Pages
4545
if: github.ref == 'refs/heads/main'
4646
uses: actions/deploy-pages@v4
4747
with:
4848
token: ${{ secrets.GITHUB_TOKEN }}
4949
branch: gh-pages
5050
folder: docs/build/html
51+
52+
- name: Upload documentation artifacts
53+
uses: actions/upload-artifact@v4
54+
with:
55+
name: github-pages
56+
path: docs/build/html

0 commit comments

Comments
 (0)