fix: deploy feature branch to GitHub Pages so live site reflects all fixes
- deploy-pages.yml: add copilot/** branch pattern so Copilot Agent PRs auto-deploy to GitHub Pages while under review (no hardcoded branch name) - docs/index.html: v3.1 version comment triggers the deploy on this push This makes the live site immediately show: auto-detect API key, Gemini provider, sessionStorage key (no cross-session stale key), and all other fixes from this PR branch. Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
This commit is contained in:
parent
f6a6dc2732
commit
b48c401a6e
|
|
@ -2,7 +2,9 @@ name: 🌀 部署铸渊聊天室 (GitHub Pages)
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- copilot/** # Copilot Agent 功能分支可直接部署预览,PR 合并后自动失效
|
||||
paths:
|
||||
- 'docs/**'
|
||||
- '.github/brain/**'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<!-- 铸渊助手 v3.1 · 2026-03-06 · auto-detect API + Gemini + sessionStorage key -->
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
|
|
|
|||
Loading…
Reference in New Issue