Merge pull request #15 from mon1cakk/feature/common-components #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: github pages | |
on: | |
push: | |
branches: | |
- master # default branch | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm install pnpm -g | |
- run: pnpm install --no-frozen-lockfile | |
- run: pnpm --filter online-demo run build | |
- name: Deploy dist | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.CI_TOKEN }} | |
publish_dir: ./app/online-demo/dist |