Skip to content

Fix EGOI website

Fix EGOI website #24

Workflow file for this run

name: Deploy to Github Pages
on:
push:
branches:
- master
workflow_dispatch:
jobs:
deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: 'yarn'
cache-dependency-path: frontend/yarn.lock
- name: Build
working-directory: frontend
run: |
yarn
yarn build
yarn export
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: frontend/out