Skip to content

WIP: Fixed README.md #70

WIP: Fixed README.md

WIP: Fixed README.md #70

Workflow file for this run

name: Deploy test site
on:
push:
branches: [main]
workflow_dispatch:
permissions:
pages: write
id-token: write
contents: read
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci
- name: Build site
env:
URL: https://emexlab.github.io
BASE_URL: /
run: npm run build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
name: Deploy to GitHub Pages
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy
uses: actions/deploy-pages@v4