We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27d622d commit 7a9a544Copy full SHA for 7a9a544
.github/workflows/documentation-deployment.yml
@@ -2,7 +2,7 @@ name: Docs Deployment
2
3
on:
4
push:
5
- branches: [feat/docusaurus]
+ branches: [master]
6
paths:
7
- 'website/**'
8
workflow_dispatch:
@@ -23,8 +23,11 @@ jobs:
23
uses: actions/setup-node@v4
24
with:
25
node-version: '20'
26
- cache: 'yarn'
27
- cache-dependency-path: website/yarn.lock
+
+ - name: Enable Corepack and Set up Yarn
28
+ run: |
29
+ corepack enable
30
+ corepack prepare yarn@4.10.3 --activate
31
32
- name: Install Dependencies
33
working-directory: ./website
0 commit comments