Deploy Preview #7136
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Preview | |
on: | |
workflow_run: | |
workflows: | |
- Build and Preview Site | |
types: | |
- completed | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Download Site dir | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
github_token: ${{ secrets.GH_ACCESS_TOKEN }} | |
workflow: build-and-preview-site.yml | |
run_id: ${{ github.event.workflow_run.id }} | |
name: public-dir | |
- name: Unzip Site | |
run: | | |
rm -rf ./public | |
unzip public-dir.zip | |
rm -f public-dir.zip | |
- name: Deploy to Netlify | |
id: netlify | |
uses: nwtgck/[email protected] | |
with: | |
publish-dir: 'public' | |
production-deploy: false | |
github-token: ${{ secrets.GH_ACCESS_TOKEN }} | |
enable-commit-comment: false | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
- name: Comment Deploy URL | |
uses: ./.github/actions/comment-preview-on-pr | |
with: | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
deploy_url: "${{ steps.netlify.outputs.deploy-url }}" | |