Skip to content

Commit

Permalink
👷 add gh-pages action (#1418)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuitos authored Apr 24, 2021
1 parent 7fec9d8 commit c759a94
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Qiankun Github Pages Deploy
on:
push:
branches:
- master
jobs:
deploy-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: |
yarn
yarn docs:build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist

1 comment on commit c759a94

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for qiankun ready!

✅ Preview
https://qiankun-bp7v4kjex-umijs.vercel.app

Built with commit c759a94.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.