Skip to content

Commit

Permalink
Making Publishing GH action work (#9)
Browse files Browse the repository at this point in the history
Fixed GH action + setup.py
  • Loading branch information
valayDave authored Apr 30, 2024
1 parent 88bf15e commit 346644d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
python3 setup.py sdist bdist_wheel --universal
- name: Publish metaflow-deepspeed package
uses: pypa/gh-action-pypi-publish@2f6f737ca5f74c637829c0f5c3acd0e29ea5e8bf #v1.8.11
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 #v1.8.14
with:
user: __token__
password: ${{ secrets.TWINE_PASSWORD }}
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
from setuptools import setup, find_namespace_packages

version = "0.0.9"
version = "0.0.6"

setup(
name="metaflow-deepspeed",
version=version,
description="An EXPERIMENTAL Deepspeed decorator for Metaflow",
author="Eddie Mattia",
author_email="[email protected]",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_namespace_packages(include=["metaflow_extensions.*"]),
py_modules=[
"metaflow_extensions",
Expand Down

0 comments on commit 346644d

Please sign in to comment.