-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (47 loc) · 1.53 KB
/
preview.yml
File metadata and controls
50 lines (47 loc) · 1.53 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
name: Preview
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened, closed]
jobs:
deploy-preview:
if: github.event.action != 'closed'
runs-on: ubuntu-latest
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: Save PR number
run: echo "${{ github.event.pull_request.number }}" > pr-number.txt
- uses: actions/upload-artifact@v7
with:
name: pr-number
path: pr-number.txt
retention-days: 1
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