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.
37 lines
1.1 KiB
37 lines
1.1 KiB
name: Deploy Docs
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
pr:
|
|
description: Pull Request number
|
|
required: true
|
|
name:
|
|
description: Artifact name for zip file with docs
|
|
required: true
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: ${{ github.event.inputs.name }}
|
|
path: ./docs.zip
|
|
- name: Unzip docs
|
|
run: bash ./scripts/unzip-docs.sh
|
|
- name: Deploy to Netlify
|
|
id: netlify
|
|
uses: nwtgck/[email protected]
|
|
with:
|
|
publish-dir: './site'
|
|
production-deploy: false
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
- name: Comment Deploy
|
|
run: bash ./scripts/docs-comment-deploy.sh
|
|
env:
|
|
PR: "${{ github.event.inputs.pr }}"
|
|
DEPLOY_URL: "${{ steps.netlify.outputs.deploy-url }}"
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
|