From 8b1010eed93abf7fc44d1e08e85ac86f05ad58a5 Mon Sep 17 00:00:00 2001 From: Dominik Riemer Date: Wed, 19 Jul 2023 13:28:29 +0200 Subject: [PATCH] Fix deployment setup --- .github/workflows/deploy-website.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index efaef3397..e44ee8295 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -16,19 +16,18 @@ jobs: node-version: 18.16.1 - name: Copy asf yaml run: | - cp .asf.yaml build/ + cp .asf.yaml website-v2/build/ - name: Copy htaccess run: | - cp .htaccess build/ + cp .htaccess website-v2/build/ - name: Build Docs run: | - mkdir build/docs cd website-v2 npm install npm run build - name: Copy Python docs run: | - mkdir -p ./website-v2/build/python + mkdir -p ./website-v2/build/docs/docs/python cp -r docs-python/* ./website-v2/build/docs/docs/python - name: Deploy uses: peaceiris/actions-gh-pages@v2.4.0