Skip to content

fix(next.config.js): removed images and asset #3

fix(next.config.js): removed images and asset

fix(next.config.js): removed images and asset #3

Workflow file for this run

name: GitHub Pages deploy
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/[email protected]
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Installing packages
run: npm ci
- name: Build website
run: npm run build && npm run export && touch ./out/.nojekyll
- name: Deploy πŸš€
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: main # The branch the action will deploy to
FOLDER: out # The folder the action will deploy to