Skip to content

Update L49 Discord link #28

Update L49 Discord link

Update L49 Discord link #28

Workflow file for this run

name: Github Pages Deploy
on:
push:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install and build
run: |
npm ci
npm run build
- name: Copy 404
run: |
cp build/index.html build/404.html
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages
folder: build