| 12345678910111213141516171819 |
- name: github pages
- on:
- push:
- branches:
- - next # default branch
- jobs:
- deploy:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - run: yarn install
- - run: yarn build:gh-pages
- - name: Deploy
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./dist/3x
|