Skip to content

Commit

Permalink
chore: Update Docker Image CI workflow to include Next.js build and d…
Browse files Browse the repository at this point in the history
…eployment steps
  • Loading branch information
faridvatani committed Jul 21, 2024
1 parent aaf3940 commit 5feb50d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Deploy Next.js site to Pages
on:
push:
branches: ["main"]

workflow_dispatch:

permissions:
Expand Down Expand Up @@ -60,7 +59,7 @@ jobs:
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./out
path: .next

# Deployment job
deploy:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
"use server";
import { fetchRequestHandler } from "@trpc/server/adapters/fetch";

import { appRouter } from "@/server";
Expand Down
1 change: 1 addition & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default function RootLayout({
return (
<html lang="en">
<body
suppressHydrationWarning={true}
className={cn(
"min-h-screen bg-background font-sans antialiased",
fontSans.variable,
Expand Down

0 comments on commit 5feb50d

Please sign in to comment.