Skip to content

Update configuration for GitHub Pages deployment #3

Update configuration for GitHub Pages deployment

Update configuration for GitHub Pages deployment #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Build project
run: |
export NODE_ENV=production
npm run build
- name: Deploy to GitHub Pages
run: |
npm install -g gh-pages
gh-pages -d out
env:
NODE_ENV: production
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}