pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
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/[email protected]
|
|
with:
|
|
if_no_artifact_found: ignore
|
|
github_token: ${{ secrets.FASTAPI_PREVIEW_DOCS_DOWNLOAD_ARTIFACTS }}
|
|
workflow: build-docs.yml
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
name: docs-site
|
|
path: ./site/
|
|
- name: Deploy to Netlify
|
|
if: steps.download.outputs.found_artifact == 'true'
|
|
id: netlify
|
|
uses: nwtgck/[email protected]
|
|
with:
|
|
publish-dir: './site'
|
|
production-deploy: ${{ github.event.workflow_run.head_repository.full_name == github.repository && github.event.workflow_run.head_branch == 'master' }}
|
|
github-token: ${{ secrets.FASTAPI_PREVIEW_DOCS_NETLIFY }}
|
|
enable-commit-comment: false
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
- name: Comment Deploy
|
|
if: steps.netlify.outputs.deploy-url != ''
|
|
uses: ./.github/actions/comment-docs-preview-in-pr
|
|
with:
|
|
token: ${{ secrets.FASTAPI_PREVIEW_DOCS_COMMENT_DEPLOY }}
|
|
deploy_url: "${{ steps.netlify.outputs.deploy-url }}"
|
|
|