Skip to content

docs: changelog 2026-05-31, sync to 148.0.7778.217 with V8Log forensi… #1

docs: changelog 2026-05-31, sync to 148.0.7778.217 with V8Log forensi…

docs: changelog 2026-05-31, sync to 148.0.7778.217 with V8Log forensi… #1

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: github-pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- name: Build static site
run: |
mkdir -p _site
cp -R docs _site/docs
touch _site/.nojekyll
- uses: actions/upload-pages-artifact@v3
with:
path: _site
- id: deployment
uses: actions/deploy-pages@v4