chore: add surge preview action (#7042)

https://github.com/marketplace/actions/surge-pr-preview
This commit is contained in:
偏右 2020-08-25 08:10:30 +08:00 committed by GitHub
parent e56615af48
commit 65ec6d64e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

19
.github/workflows/preview.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: 🔂 Surge PR Preview
on: [push, pull_request]
jobs:
preview:
runs-on: ubuntu-latest
env:
PUBLIC_PATH: '/'
steps:
- uses: actions/checkout@v2
- uses: afc163/surge-preview@v1
with:
surge_token: ${{ secrets.SURGE_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
build: |
npm install
./node_modules/.bin/vant-cli build-site
dist: site

View File

@ -3,7 +3,7 @@ module.exports = {
build: {
skipInstall: ['lazyload'],
site: {
publicPath: 'https://b.yzcdn.cn/vant/',
publicPath: process.env.PUBLIC_PATH || 'https://b.yzcdn.cn/vant/',
},
vetur: {
tagPrefix: 'van-',