chore: import upstream snapshot with attribution
Docs / Build (push) Has been cancelled
Docs / Deploy (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:37:25 +08:00
commit 9f48d4a18c
465 changed files with 657428 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
name: Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Build and upload docs
uses: withastro/action@v6
env:
ASTRO_SITE: https://ccrdesk.top
ASTRO_BASE: /
with:
path: docs
node-version: 24
deploy:
name: 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