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 ce2f117 commit ac37eabCopy full SHA for ac37eab
.github/workflows/deploy_documentation.yml
@@ -1,10 +1,18 @@
1
on:
2
release:
3
+ types: [published]
4
+ workflow_run:
5
+ workflows:
6
+ - Release
7
types:
- - released
8
+ - completed
9
+ pull_request:
10
+ types: [labeled]
11
+
12
name: Deploy documentation for latest release
13
jobs:
14
deploy_documentation:
15
+ if: ${{ github.event.action == 'completed' || github.event.label.name == 'test-release-process' || (github.event_name == 'release' && github.event.action == 'published') }}
16
runs-on: ubuntu-latest
17
steps:
18
- name: Checkout
0 commit comments