From 126bac462d9bbb77da8c6d00c51c95d9766fb6e1 Mon Sep 17 00:00:00 2001 From: Kristoffer Andersen Date: Fri, 27 Aug 2021 12:30:39 +0200 Subject: [PATCH] Add basic BCF pypi upload CI action. (#1701) * Add basic pypi upload CI action. For now I propose a simple trigger using a commit tag "[bcf release]". I think this is just as well since we do not (yet) have an automatic versioning for the bcf package * add correct subfolder (point to bcf) to ci recipe --- .github/workflows/ci-bcf.yml | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/ci-bcf.yml diff --git a/.github/workflows/ci-bcf.yml b/.github/workflows/ci-bcf.yml new file mode 100644 index 0000000000..8d689cc2fd --- /dev/null +++ b/.github/workflows/ci-bcf.yml @@ -0,0 +1,38 @@ +name: ci-bcf + +on: + push: + +jobs: + activate: + runs-on: ubuntu-latest + if: | + github.repository == 'IfcOpenShell/IfcOpenShell' && + contains(github.event.head_commit.message, '[bcf release]') + steps: + - run: echo ok go + upload: + needs: activate + name: Upload BCF package to Pypi + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Build package + run: | + cd src/bcf + pip install build + python -m build + - name: Publish package + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_TOKEN }} + packages_dir: src/bcf/dist + + + + +