generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 96
46 lines (41 loc) · 1.25 KB
/
preview-site.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 ./site/public
unzip public-dir.zip
rm -f public-dir.zip
- name: Deploy to Netlify
id: netlify
uses: nwtgck/[email protected]
with:
publish-dir: 'site/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 }}"