We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1bcd6a commit 8c07bfbCopy full SHA for 8c07bfb
.github/workflows/docs.yml
@@ -5,7 +5,8 @@ on:
5
branches:
6
- main
7
release:
8
-
+
9
+ # Documentation built but not deployed for pull requests
10
pull_request:
11
12
@@ -42,6 +43,7 @@ jobs:
42
43
run: make -C doc/manual html
44
45
- name: Deploy
46
+ # Documentation deployed only on pushes to main and releases
47
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'release' }}
48
uses: peaceiris/actions-gh-pages@v4
49
with:
0 commit comments