committed by
GitHub
2 changed files with 30 additions and 1 deletions
@ -16,19 +16,23 @@ jobs: |
|||||
rm -rf ./site |
rm -rf ./site |
||||
mkdir ./site |
mkdir ./site |
||||
- name: Download Artifact Docs |
- name: Download Artifact Docs |
||||
|
id: download |
||||
uses: dawidd6/[email protected] |
uses: dawidd6/[email protected] |
||||
with: |
with: |
||||
|
if_no_artifact_found: ignore |
||||
github_token: ${{ secrets.FASTAPI_PREVIEW_DOCS_DOWNLOAD_ARTIFACTS }} |
github_token: ${{ secrets.FASTAPI_PREVIEW_DOCS_DOWNLOAD_ARTIFACTS }} |
||||
workflow: build-docs.yml |
workflow: build-docs.yml |
||||
run_id: ${{ github.event.workflow_run.id }} |
run_id: ${{ github.event.workflow_run.id }} |
||||
name: docs-zip |
name: docs-zip |
||||
path: ./site/ |
path: ./site/ |
||||
- name: Unzip docs |
- name: Unzip docs |
||||
|
if: steps.download.outputs.found_artifact == 'true' |
||||
run: | |
run: | |
||||
cd ./site |
cd ./site |
||||
unzip docs.zip |
unzip docs.zip |
||||
rm -f docs.zip |
rm -f docs.zip |
||||
- name: Deploy to Netlify |
- name: Deploy to Netlify |
||||
|
if: steps.download.outputs.found_artifact == 'true' |
||||
id: netlify |
id: netlify |
||||
uses: nwtgck/[email protected] |
uses: nwtgck/[email protected] |
||||
with: |
with: |
||||
@ -40,6 +44,7 @@ jobs: |
|||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} |
||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} |
||||
- name: Comment Deploy |
- name: Comment Deploy |
||||
|
if: steps.netlify.outputs.deploy-url != '' |
||||
uses: ./.github/actions/comment-docs-preview-in-pr |
uses: ./.github/actions/comment-docs-preview-in-pr |
||||
with: |
with: |
||||
token: ${{ secrets.FASTAPI_PREVIEW_DOCS_COMMENT_DEPLOY }} |
token: ${{ secrets.FASTAPI_PREVIEW_DOCS_COMMENT_DEPLOY }} |
||||
|
Loading…
Reference in new issue