Skip to content

Commit 7a9a544

Browse files
authored
Update documentation-deployment.yml
1 parent 27d622d commit 7a9a544

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/documentation-deployment.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Docs Deployment
22

33
on:
44
push:
5-
branches: [feat/docusaurus]
5+
branches: [master]
66
paths:
77
- 'website/**'
88
workflow_dispatch:
@@ -23,8 +23,11 @@ jobs:
2323
uses: actions/setup-node@v4
2424
with:
2525
node-version: '20'
26-
cache: 'yarn'
27-
cache-dependency-path: website/yarn.lock
26+
27+
- name: Enable Corepack and Set up Yarn
28+
run: |
29+
corepack enable
30+
corepack prepare yarn@4.10.3 --activate
2831
2932
- name: Install Dependencies
3033
working-directory: ./website

0 commit comments

Comments
 (0)