mirror of
https://github.com/PaiGramTeam/sqlmodel.git
synced 2024-11-22 15:37:33 +00:00
49 lines
1.6 KiB
YAML
49 lines
1.6 KiB
YAML
name: Deploy Docs
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- Build Docs
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
deploy-docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Dump GitHub context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|
|
- uses: actions/checkout@v3
|
|
- name: Clean site
|
|
run: |
|
|
rm -rf ./site
|
|
mkdir ./site
|
|
- name: Download Artifact Docs
|
|
id: download
|
|
uses: dawidd6/action-download-artifact@v2.27.0
|
|
with:
|
|
if_no_artifact_found: ignore
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
workflow: build-docs.yml
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
name: docs-site
|
|
path: ./site/
|
|
- name: Deploy to Cloudflare Pages
|
|
if: steps.download.outputs.found_artifact == 'true'
|
|
id: deploy
|
|
uses: cloudflare/pages-action@v1
|
|
with:
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
projectName: sqlmodel
|
|
directory: './site'
|
|
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ ( github.event.workflow_run.head_repository.full_name == github.repository && github.event.workflow_run.head_branch == 'main' && 'main' ) || ( github.event.workflow_run.head_sha ) }}
|
|
- name: Comment Deploy
|
|
if: steps.deploy.outputs.url != ''
|
|
uses: ./.github/actions/comment-docs-preview-in-pr
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
deploy_url: "${{ steps.deploy.outputs.url }}"
|