mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
21 lines
479 B
YAML
21 lines
479 B
YAML
|
name: Surge Preview
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [opened, synchronize, reopened, closed]
|
||
|
|
||
|
jobs:
|
||
|
preview:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.repository == 'doocs/md'
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: afc163/surge-preview@main
|
||
|
with:
|
||
|
surge_token: ${{ secrets.SURGE_TOKEN }}
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
dist: dist
|
||
|
build: |
|
||
|
npm install
|
||
|
npm run build:h5-netlify
|