Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

build-doc-site.yml 638 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  1. name: Build Docs
  2. on:
  3. push:
  4. branches: [master]
  5. jobs:
  6. doc-site:
  7. name: Build and deploy docs
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: Checkout 🛎️
  11. uses: actions/checkout@v2
  12. - name: Install Ruby 💎
  13. uses: ruby/setup-ruby@v1
  14. with:
  15. ruby-version: 2.7
  16. bundler-cache: true
  17. working-directory: docs
  18. - name: Build Jekyll site 🕸
  19. run: |
  20. cd docs
  21. bundle exec jekyll build
  22. - name: Deploy 🚀
  23. uses: JamesIves/github-pages-deploy-action@4.1.0
  24. with:
  25. branch: gh-pages
  26. folder: docs/_site
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...