Disable categories and enforce excerpt #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Deploy website" | |
on: | |
push: | |
branches: [ new_website ] | |
jobs: | |
deploy_website: | |
name: "Deploy website" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install necessary tools | |
run: pip install mkdocs mkdocs-markdownextradata-plugin mkdocs-material mkdocs-redirects | |
- name: Copy Javadoc | |
run: cp -r javadoc/ docs/javadoc/ | |
- name: Deploy website | |
run: mkdocs gh-deploy --force |