Skip to content

Continue deploying from the new_website branch until ready to merge #29

Continue deploying from the new_website branch until ready to merge

Continue deploying from the new_website branch until ready to merge #29

Workflow file for this run

name: "Deploy website"
on:
push:
branches: [ master, "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
cache: 'pip'
- name: Install necessary tools
run: pip install -r requirements.txt
- name: Copy Javadoc
run: cp -r javadoc/ docs/javadoc/
- name: Deploy website
run: mkdocs gh-deploy --force