Skip to content

Deploy Website

Deploy Website #7

Workflow file for this run

name: Deploy website
on: [push]
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Repository Checkout
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Netlify
run: npm install [email protected] -g
- name: Build Project
run: npm run build
- name: Start Project
run: npx next start
- name: Deploy to Netlify
id: netlify_deploy
run: |
netlify deploy \
--dir .next \
--site ${{ secrets.NETLIFY_SITE_ID }} \
--auth ${{ secrets.NETLIFY_API_TOKEN }}