website.yml 1020 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. name: website
  2. on:
  3. push:
  4. branches: [ main ]
  5. pull_request:
  6. branches: [ main ]
  7. permissions:
  8. contents: write
  9. jobs:
  10. deploy:
  11. runs-on: ubuntu-latest
  12. steps:
  13. - uses: actions/checkout@v4
  14. ###################################################
  15. - uses: actions/setup-node@v4
  16. - name: Retype build
  17. run: |
  18. python scripts/gen_docs.py
  19. cd docs
  20. npm install retypeapp -g
  21. retype build
  22. ###################################################
  23. - name: Setup emsdk
  24. uses: mymindstorm/setup-emsdk@v14
  25. with:
  26. version: latest
  27. actions-cache-folder: 'emsdk-cache-v2'
  28. - name: Compile
  29. run: |
  30. bash build_web.sh
  31. mv web docs/.retype/static
  32. ###################################################
  33. - uses: crazy-max/ghaction-github-pages@v3
  34. with:
  35. target_branch: gh-pages
  36. build_dir: docs/.retype
  37. env:
  38. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  39. if: github.ref == 'refs/heads/main'