Skip to content

fix(deps): update rust crate v8 to v145 - abandoned #591

fix(deps): update rust crate v8 to v145 - abandoned

fix(deps): update rust crate v8 to v145 - abandoned #591

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
pull_request:
jobs:
deploy:
name: Deploy Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build documentation
run: pnpm run --filter @lagoss/docs build
- uses: lagossapp/github-action@latest
with:
token: ${{ secrets.LAGOSS_TOKEN }}
app_id_or_name: docs
prod: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
- name: Log deployment URL
run: |
url=$(grep -o 'https://[^[:space:]]*' lagoss.output)
echo "Deployment available at: $url"