docs.yml 431 B

12345678910111213141516171819202122
  1. name: github pages
  2. on:
  3. push:
  4. branches:
  5. - main
  6. jobs:
  7. deploy:
  8. runs-on: ubuntu-18.04
  9. steps:
  10. - uses: actions/checkout@v2
  11. with:
  12. fetch-depth: 0
  13. - name: Build
  14. run: make docs
  15. - name: Deploy
  16. uses: peaceiris/actions-gh-pages@v3.8.0
  17. with:
  18. github_token: ${{ secrets.GITHUB_TOKEN }}
  19. publish_dir: ./site
  20. cname: external-secrets.io