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.

54 lines
1.6 KiB

name: Preview Docs
on:
workflow_run:
workflows:
- Build Docs
types:
- completed
# workflow_dispatch:
# inputs:
# pr:
# description: Pull Request number
# required: true
# name:
# description: Artifact name for zip file with docs
# required: true
# commit:
# description: Commit SHA hash
# required: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# - uses: ./.github/actions/get-artifact
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# name: ${{ github.event.inputs.name }}
# path: ./archive.zip
# - name: Unzip docs
# run: bash ./scripts/unzip-docs.sh
- name: Download Artifact Docs
uses: dawidd6/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: build-docs.yml
run_id: ${{ github.event.workflow_run.id }}
name: docs-zip
- name: Deploy to Netlify
id: netlify
uses: nwtgck/[email protected]
with:
publish-dir: './site'
production-deploy: false
github-token: ${{ secrets.GITHUB_TOKEN }}
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
- name: Comment Deploy
uses: ./.github/actions/comment-docs-preview-in-pr
with:
token: ${{ secrets.GITHUB_TOKEN }}
deploy_url: "${{ steps.netlify.outputs.deploy-url }}"