Skip to content

Update next.config.js #8

Update next.config.js

Update next.config.js #8

Workflow file for this run

name: Build and Deploy Blogs
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20.x
- run: |
yarn install
yarn build
- name: Next Pages
uses: anorcle/[email protected]
- name: Commit and push changes
run: |
git config --global user.name "shawndeng"
git config --global user.email "[email protected]"
git add -A
git commit -m "New Build"
git push