-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (41 loc) · 1.42 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
name: Deploy PR previews to GitHub Pages
concurrency: preview-${{ github.ref }}
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
- closed
jobs:
deploy-preview:
environment: github-pages
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout PR
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Deploy to GH-Pages
uses: rossjrw/pr-preview-action@v1
id: preview_step
if: contains(['opened', 'reopened', 'synchronize'], ${{ github.event.action }})
with:
source-dir: .
preview-branch: gh-pages
umbrella-dir: pr-preview
deploy-repository: "key4hep/dmx"
token: ${{ secrets.PR_TOKEN }}
action: auto
- name: Remove preview
uses: rossjrw/pr-preview-action@v1
if: github.event.action == 'closed' && !github.event.pull_request.merged
with:
source-dir: .
preview-branch: gh-pages
umbrella-dir: pr-preview
deploy-repository: "key4hep/dmx"
token: ${{ secrets.PR_TOKEN }}
action: remove