We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e6446fc + c9cbdbf commit be9466cCopy full SHA for be9466c
.github/workflows/docs.yml
@@ -6,7 +6,7 @@ on:
6
- main
7
8
jobs:
9
- build-and-upload:
+ build-docs:
10
name: Build & Upload Artifact
11
runs-on: ubuntu-latest
12
steps:
@@ -35,3 +35,18 @@ jobs:
35
with:
36
name: docs
37
path: docs/_build
38
+
39
+ upload-docs:
40
+ name: Upload docs to GitHub pages
41
+ runs-on: ubuntu-latest
42
+ needs: build-docs
43
+ steps:
44
+ - uses: actions/checkout@v3
45
+ - uses: actions/download-artifact@v3
46
+ with:
47
+ name: docs
48
49
+ - name: Push to GitHub pages
50
+ uses: JamesIves/github-pages-deploy-action@v4
51
52
+ folder: html
0 commit comments