mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-21 08:10:48 +08:00
* fix: update AI extract default model * fix: update e2e worker node version * fix: use node lts for e2e worker * fix: align AI model and CI node version
57 lines
1.8 KiB
YAML
57 lines
1.8 KiB
YAML
name: Deploy Docs
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Tag Build CI"]
|
|
types:
|
|
- completed
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
if: >
|
|
github.event_name == 'workflow_dispatch' ||
|
|
(github.event.workflow_run.conclusion == 'success' &&
|
|
startsWith(github.event.workflow_run.head_branch, 'v'))
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.event.workflow_run.head_sha || github.ref }}
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
|
|
- uses: pnpm/action-setup@v5
|
|
name: Install pnpm
|
|
id: pnpm-install
|
|
with:
|
|
version: 10
|
|
run_install: false
|
|
|
|
- name: Deploy Docs
|
|
env:
|
|
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
WORKFLOW_RUN_HEAD_BRANCH: ${{ github.event.workflow_run.head_branch }}
|
|
run: |
|
|
cd vitepress-docs/
|
|
wget https://github.com/dreamhunter2333/cloudflare_temp_email/releases/latest/download/frontend.zip -O docs/public/ui_install/frontend.zip
|
|
pnpm install --no-frozen-lockfile
|
|
if TAG_NAME=$(gh release view --json tagName --jq '.tagName' 2>/dev/null); then
|
|
echo "Using release tag $TAG_NAME"
|
|
else
|
|
TAG_NAME="${WORKFLOW_RUN_HEAD_BRANCH:-${GITHUB_REF_NAME:-main}}"
|
|
echo "No GitHub release found for this repo; fallback TAG_NAME=$TAG_NAME"
|
|
fi
|
|
echo "Deploying docs for tag $TAG_NAME"
|
|
export TAG_NAME
|
|
pnpm run deploy
|