New home #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Preview Home Page | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
paths: | |
- "projects/fastgpt/**" | |
branches: | |
- "new-home" | |
- "main" | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
permissions: | |
actions: read # Only required for private GitHub Repo | |
contents: read | |
deployments: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
# Job outputs | |
outputs: | |
url: ${{ steps.deploy.outputs.deployment-url }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
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 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9 | |
- name: Build | |
env: | |
NEXT_PUBLIC_HOME_URL: https://tryfastgpt.ai | |
NEXT_PUBLIC_USER_URL: https://cloud.tryfastgpt.ai | |
run: | | |
cd projects/fastgpt | |
npm install | |
npm run build | |
- name: Deploy to Cloudflare Pages | |
id: deploy | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ vars.CLOUDFLARE_ACCOUNT_ID }} | |
command: pages deploy ./projects/fastgpt/out --project-name=fastgpt-home-run | |
docsOutput: | |
needs: [ deploy ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Write md | |
run: | | |
echo "# 📘 Preview FastGPT homepage" > report.md | |
echo "[👀 Visit Preview](${{ needs.deploy.outputs.url }})" >> report.md | |
cat report.md | |
- name: Print preview url | |
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" |