-
Notifications
You must be signed in to change notification settings - Fork 11
53 lines (45 loc) · 995 Bytes
/
preview_master.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
name: Pages Preview Deploy
on:
push:
branches:
- master
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'release'
cancel-in-progress: false
jobs:
build:
uses: ./.github/workflows/build.yaml
with:
preview: true
publish:
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: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./preview/dist
deploy:
environment:
name: Production
url: https://lilex.myrt.co
runs-on: ubuntu-latest
needs: publish
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4