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 8f07380 commit 83ec1e8Copy full SHA for 83ec1e8
.github/workflows/docs.yml
@@ -1,6 +1,7 @@
1
name: Verify & Publish Documentation
2
3
on:
4
+ workflow_dispatch:
5
push:
6
paths:
7
- 'docs/**'
@@ -27,7 +28,12 @@ jobs:
27
28
directory: ./artifacts/Documentation
29
arguments: --url-ignore /api/ --allow-hash-href --assume-extension --disable-external
30
- - name: '[Publish]'
31
- if: ${{ github.event_name == 'push' }}
+ - name: '[Publish Documentation]'
32
+ if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
33
shell: pwsh
34
run: ./build.ps1 -target Publish-Documentation
35
+
36
37
+ if: ${{ github.event_name == 'workflow_dispatch' }}
38
+ shell: pwsh
39
+ run: ./build.ps1 -target Force-Publish-Documentation
0 commit comments