From 65ec6d64e7c4244d64ea79d8e42cdfc06bc3b17a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=81=8F=E5=8F=B3?= Date: Tue, 25 Aug 2020 08:10:30 +0800 Subject: [PATCH] chore: add surge preview action (#7042) https://github.com/marketplace/actions/surge-pr-preview --- .github/workflows/preview.yml | 19 +++++++++++++++++++ vant.config.js | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/preview.yml diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml new file mode 100644 index 000000000..afa04efea --- /dev/null +++ b/.github/workflows/preview.yml @@ -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 diff --git a/vant.config.js b/vant.config.js index f73352b73..3b4c22f2b 100644 --- a/vant.config.js +++ b/vant.config.js @@ -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-',