Skip to content

Commit

Permalink
chore: test fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
akiletour committed Oct 3, 2024
1 parent ec0b8c4 commit c4158a3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ env:
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
tags:
- '*'
tags:
- "*"
jobs:
Deploy-Production:
runs-on: ubuntu-latest
Expand All @@ -14,8 +14,13 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 8
version: latest
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: pnpm add --global vercel@latest
Expand Down
1 change: 0 additions & 1 deletion src/app/(pages)/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export default async function Page({ params }: Props) {
<PostBody content={replaceBackendUrlContent(post.content)} />
</div>

{/* @ts-expect-error Server Component */}
<PostComments postDatabaseId={post.databaseId} identifier={post.id} />

<div className="container">
Expand Down

0 comments on commit c4158a3

Please sign in to comment.