Skip to content

Commit

Permalink
build updates
Browse files Browse the repository at this point in the history
  • Loading branch information
srinva committed Jul 14, 2024
1 parent 51654dc commit b16f6b6
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,20 @@ on:
branches: [ main ]

jobs:
build-site:
name: Build Site
nextjs-build:
name: Next.js Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker build .
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
docker-build:
needs: nextjs-build
name: Docker Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker Image
run: docker build .

0 comments on commit b16f6b6

Please sign in to comment.