12345678910111213141516171819202122 |
- name: deploy
- on:
- push:
- branches:
- - main
- jobs:
- build-deploy:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - run: npm install
- - run: npm run build
- - name: Deploy
- uses: peaceiris/actions-gh-pages@v2.5.0
- env:
- ACTIONS_DEPLOY_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
- PUBLISH_BRANCH: gh-pages
- PUBLISH_DIR: dist
|