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 a70c501 commit 8f9edc6Copy full SHA for 8f9edc6
1 file changed
.github/workflows/docs.yml
@@ -1,6 +1,10 @@
1
name: Docs Deployment
2
3
on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - develop
8
release:
9
types: [released]
10
@@ -20,10 +24,11 @@ jobs:
20
24
run: npm run doc
21
25
- name: Deploy
22
26
uses: peaceiris/actions-gh-pages@v4
27
+ if: github.event_name == 'release'
23
28
with:
29
github_token: ${{ secrets.RWT_BOT_PAT }}
30
publish_dir: doc
31
destination_dir: .
32
enable_jekyll: false
- force_orphan: false # So we keep the doc history
33
+ force_orphan: false # So we keep the doc history
34
commit_message: JSDoc ${{ github.event.release.name }}
0 commit comments