We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c3aa7d commit b3025fdCopy full SHA for b3025fd
.github/workflows/docs.yml
@@ -1,11 +1,15 @@
1
+
2
name: Documentation Build Test
3
4
on:
- release:
5
- types: [published]
6
push:
+ branches:
7
+ - '**'
8
tags:
9
- '*'
10
+ pull_request:
11
+ release:
12
+ types: [published]
13
14
jobs:
15
build-docs:
@@ -37,11 +41,13 @@ jobs:
37
41
make html
38
42
39
43
- name: Upload artifact for GitHub Pages
44
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') || github.event_name == 'release'
40
45
uses: actions/upload-pages-artifact@v3
46
with:
47
path: docs/_build/html
48
49
deploy-docs:
50
51
needs: build-docs
52
runs-on: ubuntu-latest
53
permissions:
0 commit comments