From dc11918ac4c242d775b34c06652d97c611f78b30 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 28 Feb 2024 18:38:39 +0100 Subject: [PATCH] Fix some capitalization Signed-off-by: Steffen Vogel --- .github/workflows/publish_to_pypi.yaml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish_to_pypi.yaml b/.github/workflows/publish_to_pypi.yaml index 51f4fb5af9..44cf5fc9fd 100644 --- a/.github/workflows/publish_to_pypi.yaml +++ b/.github/workflows/publish_to_pypi.yaml @@ -1,4 +1,4 @@ -name: Publish dpsim package to PyPi +name: Publish DPsim package to Python Package Index (PyPI) on: push: @@ -9,7 +9,7 @@ on: jobs: build-and-publish-sdist: - name: Build dpsim sdist and publish to PyPi + name: Build DPsim source distribution and publish to PyPi runs-on: ubuntu-latest container: sogno/dpsim:dev steps: @@ -18,7 +18,7 @@ jobs: with: submodules: recursive - - name: Build dpsim source dist + - name: Build DPsim source distribution shell: bash run: python3 -m build --sdist --outdir dist/ @@ -35,9 +35,8 @@ jobs: with: password: ${{ secrets.PYPI_API_TOKEN }} - build-and-publish-wheels: - name: Build dpsim wheels and publish to PyPi + name: Build DPsim wheels and publish to PyPI runs-on: ubuntu-20.04 steps: - name: Checkout @@ -45,11 +44,7 @@ jobs: with: submodules: recursive - # - name: Build manylinux docker image # Remove this step as soon as the image is published on docker hub - # shell: bash - # run: docker build . --file packaging/Docker/Dockerfile.manylinux -t sogno/dpsim:manylinux - - - name: Build dpsim wheels for all supported python versions + - name: Build DPsim wheels for all supported Python versions uses: pypa/cibuildwheel@v2.11.2 with: output-dir: dist