-
Notifications
You must be signed in to change notification settings - Fork 11
39 lines (34 loc) · 1011 Bytes
/
preview_pr.yaml
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
name: Netlify Preview Deploy
on:
pull_request:
types: ['opened', 'edited', 'synchronize']
jobs:
build:
uses: ./.github/workflows/build.yaml
with:
preview: true
deploy:
environment:
name: PR preview
url: https://preview--lilex.netlify.app
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download preview
uses: actions/download-artifact@v4
with:
name: Preview
path: preview/dist
- name: Verify build
run: ls -lah preview/dist
- uses: jsmrcaga/action-netlify-deploy@master
id: deploy
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
deploy_alias: preview
build_directory: preview/dist
install_command: "echo Skipping installing the dependencies"
build_command: "echo Skipping building the web files"