Skip to content

Commit b864743

Browse files
committed
fix
1 parent 7925521 commit b864743

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/landing-build-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
with:
2525
cache: "npm"
2626
cache-dependency-path: landing/package-lock.json
27-
- name: Install monorepo node dependencies
27+
- name: Install node dependencies
2828
working-directory: landing
2929
run: npm install
30-
- name: Build Reanimated docs
30+
- name: Build landing page
3131
working-directory: landing
32-
run: npm build
32+
run: npm run build

.github/workflows/landing-publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@ jobs:
2222
with:
2323
cache: "npm"
2424
cache-dependency-path: landing/package-lock.json
25-
- name: Install monorepo node dependencies
25+
- name: Install node dependencies
2626
working-directory: landing
2727
run: npm install
28-
- name: Build Reanimated docs
28+
- name: Build landing page
2929
working-directory: landing
30-
run: npm build
30+
run: npm run build
31+
3132
- name: Publish generated content to GitHub Pages
3233
uses: JamesIves/github-pages-deploy-action@releases/v3
3334
with:

0 commit comments

Comments
 (0)