Skip to content

Commit

Permalink
change name of package
Browse files Browse the repository at this point in the history
  • Loading branch information
vzickner committed Nov 8, 2023
1 parent c622179 commit c64bc7e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ name: Publish Package to PyPi
on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
environment: release
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
Expand All @@ -21,6 +22,9 @@ jobs:
- run: source venv/bin/activate
- run: pip install setuptools
- run: python setup.py sdist
- run: pip wheel . -w dist
- run: python -m pip install --upgrade twine
- run: twine upload dist/*
- run: pip wheel --no-deps . -w dist
- name: Publish package distributions to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/
verbose: true
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
long_description = (this_directory / "README.md").read_text()

setup(
name='flowable.external-worker-client',
packages=find_packages(include=['flowable.external-worker-client']),
name='flowable_external_worker_client',
packages=find_packages(include=['flowable_external_worker_client']),
version='1.0.dev1',
description='Flowable External Worker Library to connect Python code to Flowable using an external worker.',
long_description=long_description,
Expand Down

0 comments on commit c64bc7e

Please sign in to comment.