Skip to content

refactor(courses): migrate instructor fields to use people collection… #13

refactor(courses): migrate instructor fields to use people collection…

refactor(courses): migrate instructor fields to use people collection… #13

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: write
jobs:
test-build:
name: Test build (PR)
runs-on: ubuntu-latest
# Run only for pull requests
if: github.event_name == 'pull_request'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
build-and-deploy:
name: Build & deploy (main)
runs-on: ubuntu-latest
# Deploy only on pushes to main (and manual runs if you want)
if: github.event_name != 'pull_request'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
- name: Disable Jekyll on GitHub Pages
run: touch dist/.nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist
branch: gh-pages
clean: true