Skip to content

Update migrate.md

Update migrate.md #11

Workflow file for this run

name: GH Page Publishing
on:
push:
branches: main
permissions:
pages: write
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout changes
uses: actions/checkout@v2
- name: Set up Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Run test script
run: npm test
- name: Build production website
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
cname: docs.joinsharkey.org