From f07ffc944f7254140b2197228d9d0f75338b9ab8 Mon Sep 17 00:00:00 2001 From: Yang Libin Date: Wed, 24 Nov 2021 15:45:20 +0800 Subject: [PATCH] feat: add preview workflow (#93) * feat: add preview workflow * chore: update workflow * fix: workflow configuration --- .github/workflows/preview.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/preview.yml diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml new file mode 100644 index 0000000..4a5a337 --- /dev/null +++ b/.github/workflows/preview.yml @@ -0,0 +1,20 @@ +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