You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2023/03/10 20:48:13 UTC

[streampipes-website] branch dev updated: Fix path to python docs

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes-website.git


The following commit(s) were added to refs/heads/dev by this push:
     new e450d062 Fix path to python docs
e450d062 is described below

commit e450d062b9d8c25c7642df724cdce56ce8024b9b
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Fri Mar 10 21:48:04 2023 +0100

    Fix path to python docs
---
 .github/workflows/deploy-website.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml
index 46eed93e..a6302ad3 100644
--- a/.github/workflows/deploy-website.yml
+++ b/.github/workflows/deploy-website.yml
@@ -33,7 +33,8 @@ jobs:
           cp -r build/streampipes-docs/* ../../build/docs
       - name: Copy Python docs
         run: |
-          cp -r docs-python/* build/docs/docs/python
+          mkdir -p ./build/docs/docs/python
+          cp -r docs-python/* ./build/docs/docs/python
       - name: Deploy
         uses: peaceiris/actions-gh-pages@v2.4.0
         env: