Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fvolz committed Oct 17, 2024
1 parent 100f952 commit 501dffe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
long_description = fh.read()

setup(
name="fx_python_sdk",
name="fx-python-sdk-cli",
version="0.1.0",
author="FX",
author_email="[email protected]",
description="Interact with FX Port to share / retrieve AAS Submodel",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/your_username/your_package_name",
url="https://github.com/fvolz/fx-python-sdk-cli",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 501dffe

Please sign in to comment.