gh-pages.yml 422 B

12345678910111213141516171819202122
  1. name: Gh-Pages
  2. on:
  3. push:
  4. branches: [master]
  5. jobs:
  6. build:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@v4
  10. - uses: subosito/flutter-action@v1
  11. # - uses: erickzanardo/flutter-gh-pages@v3
  12. - name: Deploy to GitHub Pages
  13. uses: JamesIves/github-pages-deploy-action@v4.6.1
  14. with:
  15. branch: gh-pages
  16. folder: docsite/_site
  17. clean: true