This is an automated email from the ASF dual-hosted git repository. bossenti pushed a commit to branch rel/0.91.0 in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit af029d21ef32a620f29b3e98a7cddf94fd7e8efa Author: Sven Oehler <[email protected]> AuthorDate: Mon Feb 13 13:25:24 2023 +0100 Add pypi workflow --- .github/workflows/pypi-deployment.yml | 50 +++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/.github/workflows/pypi-deployment.yml b/.github/workflows/pypi-deployment.yml new file mode 100644 index 000000000..a34b836e8 --- /dev/null +++ b/.github/workflows/pypi-deployment.yml @@ -0,0 +1,50 @@ +# 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: Deploy Python Package to PyPI + +on: [workflow_dispatch] + +permissions: + contents: read + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.8 + + - name: Install dependencies + run: | + cd ./streampipes-client-python + python -m pip install --upgrade pip + pip install build twine + + - name: Build package + run: | + cd ./streampipes-client-python + python -m build + twine check --strict dist/* + + - name: Publish package + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file
