Skip to content

Commit

Permalink
Chore: create preview.yml (#21457)
Browse files Browse the repository at this point in the history
  • Loading branch information
cs1707 committed Nov 10, 2021
1 parent 5390f40 commit d19304f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Website Preview

on: pull_request

jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: '10.15.0'
registry-url: https://registry.npmjs.com/

- uses: afc163/surge-preview@v1
id: preview_step
with:
surge_token: ${{ secrets.SURGE_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
dist: examples/element-ui/
build: |
npm run bootstrap
npm run deploy:build
- name: Get the preview_url
run: echo "url => ${{ steps.preview_step.outputs.preview_url }}"

0 comments on commit d19304f

Please sign in to comment.