Skip to content

Commit 5c2640f

Browse files
committed
Fix action script
1 parent a5c416f commit 5c2640f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/deploy-pages.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,24 +45,24 @@ jobs:
4545
uses: actions/cache@v5
4646
with:
4747
path: |
48-
apps/front/.next/cache
49-
key: nextjs-${{ runner.os }}-${{ hashFiles('**/bun.lock') }}-${{ hashFiles('apps/front/**/*.{js,jsx,ts,tsx,md,mdx}') }}
48+
apps/landing/.next/cache
49+
key: nextjs-${{ runner.os }}-${{ hashFiles('**/bun.lock') }}-${{ hashFiles('apps/landing/**/*.{js,jsx,ts,tsx,md,mdx}') }}
5050
restore-keys: |
5151
nextjs-${{ runner.os }}-${{ hashFiles('**/bun.lock') }}-
5252
5353
- name: Install dependencies
5454
run: bun install
5555

56-
- name: Build front
57-
run: bun run --filter front build
56+
- name: Build landing
57+
run: bun run --filter landing build
5858

5959
- name: Disable Jekyll
60-
run: touch apps/front/out/.nojekyll
60+
run: touch apps/landing/out/.nojekyll
6161

6262
- name: Upload artifact
6363
uses: actions/upload-pages-artifact@v3
6464
with:
65-
path: ./apps/front/out
65+
path: ./apps/landing/out
6666

6767
deploy:
6868
needs: build

0 commit comments

Comments
 (0)