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 c54db88 commit ecfb700Copy full SHA for ecfb700
1 file changed
.github/workflows/docs-deploy.yml
@@ -1,4 +1,5 @@
1
name: "docs-deploy"
2
+concurrency: "docs-deploy"
3
4
on:
5
push:
@@ -7,11 +8,17 @@ on:
7
8
paths:
9
- 'docs/**'
10
11
+ workflow_run:
12
+ branches: [ main ]
13
+ workflows: [ 'release' ]
14
+ types: [ completed ]
15
+
16
workflow_dispatch:
17
18
jobs:
19
deploy:
20
name: 📃 Deploy new version bunit.dev
21
+ if: github.ref == 'refs/heads/stable' || ${{ github.event.workflow_run.conclusion == 'success' }}
22
runs-on: windows-latest
23
steps:
24
0 commit comments