Skip to content

Update package.json and package-lock.json with new dependencies and U… #3

Update package.json and package-lock.json with new dependencies and U…

Update package.json and package-lock.json with new dependencies and U… #3

Workflow file for this run

name: Deploy Next.js to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build
- name: Export the project
run: npm run export
- name: Remove existing out directory
run: rm -rf out
- name: Deploy to GitHub Pages
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git clone --branch=main https://github.com/IshuSinghSE/IshuSinghSE.github.io.git out
cp -r out/* out/
cd out
git add .
git commit -m 'Deploy Next.js app'
git push origin main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}