📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-08-31 05:00:46 +08:00
parent 8fea3d18fe
commit 0b2b056032
347 changed files with 38446 additions and 136 deletions
+45
View File
@@ -0,0 +1,45 @@
name: Deploy website to GitHub Pages
on:
push:
branches: [main]
paths:
- "registry/**"
- "schemas/**"
- "website/**"
- ".github/workflows/deploy-pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Install, build and upload website
uses: withastro/action@v6
with:
path: ./website
node-version: 24
env:
SITE_URL: https://kangarooking.github.io
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@v5