You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by bo...@apache.org on 2023/02/11 15:39:29 UTC

[streampipes-website] 01/01: eperimental: fetch python docs

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

bossenti pushed a commit to branch experimental/fetch-python-docs
in repository https://gitbox.apache.org/repos/asf/streampipes-website.git

commit 02c2b300105218730f066a316337b9b22ed64519
Author: bossenti <bo...@posteo.de>
AuthorDate: Sat Feb 11 16:39:10 2023 +0100

    eperimental: fetch python docs
---
 .github/workflows/update-python-docs.yml | 46 ++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/.github/workflows/update-python-docs.yml b/.github/workflows/update-python-docs.yml
new file mode 100644
index 00000000..6ff8b70e
--- /dev/null
+++ b/.github/workflows/update-python-docs.yml
@@ -0,0 +1,46 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+name: update-python-docs
+
+on:
+  pull_request:
+
+jobs:
+  python-docs:
+    runs-on: ubuntu-latest
+    steps:
+      - name: clone
+        uses: actions/checkout@v3
+
+      - name: fetch artifact
+        uses: dawidd6/action-download-artifact@v2
+        with:
+          github_token: ${{secrets.GITHUB_TOKEN}}
+          workflow_conclusion: success
+          branch: dev
+          name: streampipes-python-docs
+          path: .
+          repo: apache/streampipes
+          check_artifacts: true
+          search_artifacts: true
+          skip_unpack: false
+          if_no_artifact_found: fail
+
+      - name: list files
+        run: |
+          ls
+          ls streampipes-python-docs
\ No newline at end of file