forked from Oreoxmt/pingcap-docs-website-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 977 Bytes
/
surge-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
name: 🔂 Surge PR Preview
on:
push:
branches: ["main"]
paths-ignore:
- ".github/**"
pull_request:
jobs:
preview:
runs-on: ubuntu-latest
steps:
- name: Clone Docs Website Code
uses: actions/checkout@v3
with:
repository: "pingcap/website-docs"
ref: "master"
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "yarn"
- name: Remove origin docs
run: |
sudo rm -fr docs
- name: Clone This Repo
uses: actions/checkout@v3
with:
path: "docs"
- uses: afc163/surge-preview@v1
id: preview_step
with:
surge_token: ${{ secrets.SURGE_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
dist: public
build: |
yarn
yarn build
- name: Get the preview_url
run: echo "url => ${{ steps.preview_step.outputs.preview_url }}"