-
Notifications
You must be signed in to change notification settings - Fork 11
54 lines (45 loc) · 1.32 KB
/
preview.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Netlify Preview Deploy
on:
pull_request:
types: ['opened', 'edited', 'synchronize']
jobs:
build-font:
uses: ./.github/workflows/build.yaml
build-preview:
environment:
name: PR preview
url: https://preview--lilex.netlify.app
needs: build-font
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: '8.10.2'
- name: Download font build
uses: actions/download-artifact@v3
with:
name: Lilex
path: build/
- name: Verify font files
run: ls -lah build/
- name: Bootstrap
run: |
make configure_preview
- name: Build preview
run: make build_preview
- 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"