Skip to content

Updated README to include information on converting markdown files to… #4

Updated README to include information on converting markdown files to…

Updated README to include information on converting markdown files to… #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build the site
run: npm run build
- name: Configure GitHub Pages
uses: actions/[email protected]
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
# GitHub token
token: ${{ github.token }}