deploy.yml 409 B

12345678910111213141516171819202122
  1. name: deploy
  2. on:
  3. push:
  4. branches:
  5. - main
  6. jobs:
  7. build-deploy:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v1
  11. - run: npm install
  12. - run: npm run build
  13. - name: Deploy
  14. uses: peaceiris/actions-gh-pages@v2.5.0
  15. env:
  16. ACTIONS_DEPLOY_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
  17. PUBLISH_BRANCH: gh-pages
  18. PUBLISH_DIR: dist