Skip to content

chore(deps): bump picomatch from 4.0.3 to 4.0.4 in /docs (#193) #15

chore(deps): bump picomatch from 4.0.3 to 4.0.4 in /docs (#193)

chore(deps): bump picomatch from 4.0.3 to 4.0.4 in /docs (#193) #15

Workflow file for this run

name: Deploy docs to GitHub Pages
on:
workflow_dispatch:
push:
branches: [develop]
paths:
- 'docs/**'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages-deploy
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- name: Fix lockfile registry
working-directory: docs
run: node scripts/fix-lockfile-registry.js
- name: Install & build
working-directory: docs
env:
NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
run: |
npm ci
npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/dist
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