From 1e5a3e75a3393b187154e2cf6118a2d2353799f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Muller?= Date: Mon, 15 Apr 2024 09:05:27 +0200 Subject: [PATCH] Create workflow file --- .github/workflows/deploy-website.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/deploy-website.yml diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml new file mode 100644 index 000000000..7984bccf7 --- /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