Skip to content

chore: update GitHub org references from mirnau to devdrawdiy #13

chore: update GitHub org references from mirnau to devdrawdiy

chore: update GitHub org references from mirnau to devdrawdiy #13

Workflow file for this run

# .github/workflows/pages.yml
name: Deploy Docs (GitHub Pages)
on:
push:
branches: [ main ]
paths:
- 'docs/**'
- 'CHANGELOG.md'
- 'CONTRIBUTING.md'
workflow_dispatch:
# Required for actions/deploy-pages
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
cache-dependency-path: docs/package-lock.json
- name: Install deps
working-directory: docs
run: npm ci
- name: Build Docusaurus
working-directory: docs
run: npm run build
# Belt & suspenders: Docusaurus usually emits this, but force it anyway
- name: Ensure .nojekyll
run: touch docs/build/.nojekyll
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/build
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4