Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Update README.md

Update README.md #671

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18'
- name: Cache npm
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Build
run: |
sh ./scripts/install-ci.sh
npm run build
- name: Archive generated site source
uses: actions/upload-artifact@v4
with:
name: site
path: public