Skip to content

Merge branch 'master' of https://github.com/COS301-SE-2024/Office-Cap… #5

Merge branch 'master' of https://github.com/COS301-SE-2024/Office-Cap…

Merge branch 'master' of https://github.com/COS301-SE-2024/Office-Cap… #5

Workflow file for this run

name: Build and Deploy docs to GitHub Pages
on:
push:
branches: [ master ]
paths:
- "documentation/ocp-live-docs/**"
workflow_dispatch:
defaults:
run:
working-directory: documentation/ocp-live-docs
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: documentation/ocp-live-docs/build
deploy:
name: Deploy to GitHub Pages
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4