Feature/website overhaul (#49)
* Reorganize repo * Overhaul website design and rewrite in NextJS and Typescript * Delete website-publish.yml
This commit is contained in:
committed by
GitHub
parent
3674ee5bd8
commit
421ecf17e6
32
.github/workflows/website-publish.yml
vendored
32
.github/workflows/website-publish.yml
vendored
@ -1,32 +0,0 @@
|
||||
name: Website Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- website/**
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
cache: 'yarn'
|
||||
cache-dependency-path: 'website/yarn.lock'
|
||||
- name: Install
|
||||
working-directory: website
|
||||
run: yarn install --immutable
|
||||
- name: Build
|
||||
working-directory: website
|
||||
run: yarn build
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.ACCESS_TOKEN }}
|
||||
publish_dir: website/dist
|
Reference in New Issue
Block a user