-
Notifications
You must be signed in to change notification settings - Fork 73
87 lines (81 loc) · 2.79 KB
/
preview.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Deploy PR previews
on:
pull_request_target:
types:
- opened
- synchronize
- reopened
- closed
concurrency: preview-${{ github.head_ref }}
defaults:
run:
shell: bash
jobs:
build-preview:
if: github.event_name == 'pull_request_target' && github.event.action != 'closed'
runs-on: ubuntu-latest
steps:
- name: Use Node.js 14.x
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 #v3
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Build website
run: |
npm install
PATH_PREFIX="theia-website-previews/pr-previews/pr-${{ github.event.number }}" npm run build -- --prefix-paths
- name: Upload artifact
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 #v4
with:
name: "site"
path: ./public
deploy-preview:
needs: build-preview
runs-on: ubuntu-latest
permissions:
pull-requests: write
environment:
name: pull-request-preview
url: ${{ steps.deployment.outputs.deployment-url }}
steps:
# checkout required for pr-preview-action to succeed,
# while the content will not be used
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4
- name: Download the preview page
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 #v4
with:
name: "site"
path: ./public
- uses: rossjrw/pr-preview-action@f31d5aa7b364955ea86228b9dcd346dc3f29c408 #v1
id: deployment
with:
source-dir: ./public
preview-branch: previews
umbrella-dir: pr-previews
deploy-repository: eclipse-theia/theia-website-previews
token: ${{ secrets.DEPLOY_PREVIEW_TOKEN }}
action: auto
# remove the preview page when the PR got closed
remove-preview:
if: github.event_name == 'pull_request_target' && github.event.action == 'closed'
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
# checkout required for pr-preview-action to succeed,
# while the content will not be used
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4
- uses: rossjrw/pr-preview-action@f31d5aa7b364955ea86228b9dcd346dc3f29c408 #v1
id: deployment
with:
preview-branch: previews
umbrella-dir: pr-previews
deploy-repository: eclipse-theia/theia-website-previews
token: ${{ secrets.DEPLOY_PREVIEW_TOKEN }}
action: auto