File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -21,17 +21,20 @@ jobs:
2121 python -m pip install --upgrade pip
2222 pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings[python] mkdocs-static-i18n
2323
24- - name : Build MkDocs into site/docs
25- run : mkdocs build
24+ # Build MkDocs em pasta temporária
25+ - name : Build MkDocs into temp folder
26+ run : mkdocs build --site-dir temp_docs
2627
27- - name : Add landing to site/
28+ # Criar estrutura final do site
29+ - name : Prepare final site
2830 run : |
29- mkdir -p site
30- cp -r docs/landing/* site/
31+ mkdir -p site/docs
32+ cp -r temp_docs/* site/docs/
33+ cp -r landing/* site/
3134
3235 - name : Deploy to GitHub Pages
3336 uses : peaceiris/actions-gh-pages@v3
3437 with :
3538 github_token : ${{ secrets.GITHUB_TOKEN }}
3639 publish_dir : ./site
37- cname : pydoll.tech
40+ cname : pydoll.dev
Original file line number Diff line number Diff line change 11site_name : Pydoll - Async Web Automation Library
2- site_url : https://autoscrape-labs.github.io/ pydoll/
2+ site_url : https://pydoll.tech
33repo_url : https://github.com/autoscrape-labs/pydoll
44repo_name : autoscrape-labs/pydoll
55use_directory_urls : true
You can’t perform that action at this time.
0 commit comments