Skip to content

feat: adjust workflow to deploy docusuarus #2263

feat: adjust workflow to deploy docusuarus

feat: adjust workflow to deploy docusuarus #2263

Workflow file for this run

# Documentation and mdbook related jobs.

Check failure on line 1 in .github/workflows/book.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/book.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: default
# Reference: https://github.com/paradigmxyz/reth/blob/main/.github/workflows/book.yml
name: book
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- "book/**"
merge_group:
jobs:
default:
runs:
working-directory: book
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: 18
cache: npm
- 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: build
deploy:
# Only deploy if a push to main
if: github.ref_name == 'main' && github.event_name == 'push'
runs-on: ubuntu-latest
needs: [build]
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
timeout-minutes: 60
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4