Skip to content

Commit

Permalink
Merge pull request #34 from atlanhq/fix_workflow
Browse files Browse the repository at this point in the history
Fix workflow
  • Loading branch information
ErnestoLoma authored Mar 27, 2023
2 parents fef414e + 2649a71 commit 889bfcd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include pyatlan/version.txt
2 changes: 1 addition & 1 deletion check_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def read(file_name):
def main(env_var="GITHUB_REF") -> int:
git_ref = os.getenv(env_var, "none")
tag = re.sub("^refs/tags/v*", "", git_ref.lower())
version = read("version.txt").strip()
version = read("pyatlan/version.txt").strip()
if tag == version:
return 0
else:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def read(file_name):

setup(
name="pyatlan",
version=read("version.txt"),
version=read("pyatlan/version.txt"),
author="Atlan Technologies Pvt Ltd",
author_email="engineering@atlan.com",
description="Atlan Python Client",
Expand Down

0 comments on commit 889bfcd

Please sign in to comment.