Skip to content

Merge pull request #57 from UMLCloudComputing/add-build-checks-pr #62

Merge pull request #57 from UMLCloudComputing/add-build-checks-pr

Merge pull request #57 from UMLCloudComputing/add-build-checks-pr #62

Workflow file for this run

name: Deploy Docusaurus to GitHub Pages
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Fetch Latest Documentation
run: npm run import
- name: Build Docusaurus site
run: npm run build
deploy:
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build