Skip to content

update schoolio urls #15

update schoolio urls

update schoolio urls #15

Workflow file for this run

name: gh-pages deploy
on:
push:
branches: [master]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.13.2]
steps:
- name: Checkout repository
uses: actions/checkout@v3
# build the project using node
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install and Build
run: |
npm ci
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build # The folder the action should deploy.