Skip to content

fix next config

fix next config #5

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Cache Dependencies
uses: actions/cache@v2
with:
path: .yarn
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install Dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: yarn
- name: Build
run: yarn export
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: out