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 b1ff612 commit e655176Copy full SHA for e655176
.github/workflows/docs.yml
@@ -1,10 +1,10 @@
1
name: Deploy docs to Pages
2
3
on:
4
- push:
5
- branches:
6
- - master
7
- workflow_dispatch:
+ workflow_run:
+ workflows: ["Version or Publish"]
+ types: [completed]
+ branches: [master]
8
9
permissions: read-all
10
.github/workflows/main.yml
@@ -27,8 +27,12 @@ jobs:
27
28
- run: pnpm i
29
30
+ - run: pnpm docs:install
31
+
32
- run: pnpm check
33
34
- run: pnpm build
35
36
+ - run: pnpm docs:build
37
38
- run: pnpm test
.github/workflows/version-or-publish.yml
@@ -1,9 +1,10 @@
name: Version or Publish
+ workflows: ["Builds, tests & co"]
concurrency: ${{ github.workflow }}
0 commit comments