diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml new file mode 100644 index 000000000..92ed92703 --- /dev/null +++ b/.github/workflows/deploy-website.yml @@ -0,0 +1,23 @@ +name: "Deploy website" + +on: + push: + branches: [ new_website ] + +jobs: + 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-material + + - name: Deploy website + run: mkdocs gh-deploy --force