Skip to content

Update nextjs.yml

Update nextjs.yml #13

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Replace with the branch you’re deploying from
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
run: npm install # Create the package-lock.json file
- name: Build Static Files
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out