-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (71 loc) · 2.48 KB
/
preview.yml
File metadata and controls
76 lines (71 loc) · 2.48 KB
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
name: Preview
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened, closed]
jobs:
deploy-preview:
if: github.event.action != 'closed'
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Generate site
run: dotnet run --configuration Release
- name: Index with Pagefind
run: npx pagefind --site output
- name: Install Surge
run: npm install -g surge
- name: Deploy to Surge
env:
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }}
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }}
run: surge ./output petrsvihlik-pr-${{ github.event.pull_request.number }}.surge.sh
- name: Post preview URL comment
uses: actions/github-script@v7
with:
script: |
const url = 'https://petrsvihlik-pr-${{ github.event.pull_request.number }}.surge.sh';
const marker = '<!-- surge-preview -->';
const body = `${marker}\n🚀 **Preview:** [${url}](${url})`;
const comments = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
});
const existing = comments.data.find(c => c.body.includes(marker));
if (existing) {
await github.rest.issues.updateComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: existing.id,
body,
});
} else {
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body,
});
}
teardown-preview:
if: github.event.action == 'closed'
runs-on: ubuntu-latest
steps:
- name: Install Surge
run: npm install -g surge
- name: Teardown Surge preview
env:
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }}
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }}
run: surge teardown petrsvihlik-pr-${{ github.event.pull_request.number }}.surge.sh