mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00

* Aiproxy (#3649) * model config * feat: model config ui * perf: rename variable * feat: custom request url * perf: model buffer * perf: init model * feat: json model config * auto login * fix: ts * update packages * package * fix: dockerfile * feat: usage filter & export & dashbord (#3538) * feat: usage filter & export & dashbord * adjust ui * fix tmb scroll * fix code & selecte all * merge * perf: usages list;perf: move components (#3654) * perf: usages list * team sub plan load * perf: usage dashboard code * perf: dashboard ui * perf: move components * add default model config (#3653) * 4.8.20 test (#3656) * provider * perf: model config * model perf (#3657) * fix: model * dataset quote * perf: model config * model tag * doubao model config * perf: config model * feat: model test * fix: POST 500 error on dingtalk bot (#3655) * feat: default model (#3662) * move model config * feat: default model * fix: false triggerd org selection (#3661) * export usage csv i18n (#3660) * export usage csv i18n * fix build * feat: markdown extension (#3663) * feat: markdown extension * media cros * rerank test * default price * perf: default model * fix: cannot custom provider * fix: default model select * update bg * perf: default model selector * fix: usage export * i18n * fix: rerank * update init extension * perf: ip limit check * doubao model order * web default modle * perf: tts selector * perf: tts error * qrcode package * reload buffer (#3665) * reload buffer * reload buffer * tts selector * fix: err tip (#3666) * fix: err tip * perf: training queue * doc * fix interactive edge (#3659) * fix interactive edge * fix * comment * add gemini model * fix: chat model select * perf: supplement assistant empty response (#3669) * perf: supplement assistant empty response * check array * perf: max_token count;feat: support resoner output;fix: member scroll (#3681) * perf: supplement assistant empty response * check array * perf: max_token count * feat: support resoner output * member scroll * update provider order * i18n * fix: stream response (#3682) * perf: supplement assistant empty response * check array * fix: stream response * fix: model config cannot set to null * fix: reasoning response (#3684) * perf: supplement assistant empty response * check array * fix: reasoning response * fix: reasoning response * doc (#3685) * perf: supplement assistant empty response * check array * doc * lock * animation * update doc * update compose * doc * doc --------- Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: a.e. <49438478+I-Info@users.noreply.github.com>
99 lines
3.3 KiB
YAML
99 lines
3.3 KiB
YAML
name: Preview FastGPT docs
|
|
|
|
on:
|
|
pull_request_target:
|
|
paths:
|
|
- 'docSite/**'
|
|
branches:
|
|
- 'main'
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
# This workflow contains jobs "deploy-production"
|
|
deploy-preview:
|
|
# The environment this job references
|
|
environment:
|
|
name: Preview
|
|
url: ${{ steps.vercel-action.outputs.preview-url }}
|
|
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-22.04
|
|
|
|
# Job outputs
|
|
outputs:
|
|
url: ${{ steps.vercel-action.outputs.preview-url }}
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
# Step 1 - Checks-out your repository under $GITHUB_WORKSPACE
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
submodules: recursive # Fetch submodules
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
# Step 2 Detect changes to Docs Content
|
|
- name: Detect changes in doc content
|
|
uses: dorny/paths-filter@v2
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
docs:
|
|
- 'docSite/content/docs/**'
|
|
base: main
|
|
|
|
- name: Add cdn for images
|
|
run: |
|
|
sed -i "s#\](/imgs/#\](https://cdn.jsdelivr.net/gh/yangchuansheng/fastgpt-imgs@main/imgs/#g" $(grep -rl "\](/imgs/" docSite/content/zh-cn/docs)
|
|
|
|
# Step 3 - Install Hugo (specific version)
|
|
- name: Install Hugo
|
|
uses: peaceiris/actions-hugo@v2
|
|
with:
|
|
hugo-version: '0.117.0'
|
|
extended: true
|
|
|
|
# Step 4 - Builds the site using Hugo
|
|
- name: Build
|
|
run: cd docSite && hugo mod get -u github.com/colinwilson/lotusdocs@6d0568e” && hugo -v --minify
|
|
|
|
# Step 5 - Push our generated site to Vercel
|
|
- name: Deploy to Vercel
|
|
uses: amondnet/vercel-action@v25
|
|
id: vercel-action
|
|
with:
|
|
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
|
|
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} #Required
|
|
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} #Required
|
|
github-comment: false
|
|
vercel-args: '--local-config ../vercel.json' # Optional
|
|
working-directory: docSite/public
|
|
alias-domains: | #Optional
|
|
fastgpt-staging.vercel.app
|
|
docsOutput:
|
|
needs: [deploy-preview]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
- name: Write md
|
|
run: |
|
|
echo "# 🤖 Generated by deploy action" > report.md
|
|
echo "[👀 Visit Preview](${{ needs.deploy-preview.outputs.url }})" >> report.md
|
|
cat report.md
|
|
- name: Gh Rebot for Sealos
|
|
uses: labring/gh-rebot@v0.0.6
|
|
if: ${{ (github.event_name == 'pull_request_target') }}
|
|
with:
|
|
version: v0.0.6
|
|
env:
|
|
GH_TOKEN: '${{ secrets.GH_PAT }}'
|
|
SEALOS_TYPE: 'pr_comment'
|
|
SEALOS_FILENAME: 'report.md'
|
|
SEALOS_REPLACE_TAG: 'DEFAULT_REPLACE_DEPLOY'
|