Skip to content

Commit

Permalink
Fix some capitalization
Browse files Browse the repository at this point in the history
Signed-off-by: Steffen Vogel <[email protected]>
  • Loading branch information
stv0g authored and m-mirz committed Mar 1, 2024
1 parent ab05372 commit dc11918
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/publish_to_pypi.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish dpsim package to PyPi
name: Publish DPsim package to Python Package Index (PyPI)

on:
push:
Expand All @@ -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:
Expand All @@ -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/

Expand All @@ -35,21 +35,16 @@ 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
uses: actions/checkout@v3
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/[email protected]
with:
output-dir: dist
Expand Down

0 comments on commit dc11918

Please sign in to comment.