Skip to content

Commit

Permalink
#new-release -> <new-release:0.0.6>
Browse files Browse the repository at this point in the history
  • Loading branch information
ufuk committed Jul 16, 2024
1 parent 086bb9a commit d325a86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
pip install build
- name: Build package
env:
PACKAGE_VERSION: ${GITHUB_REF##*/}
PACKAGE_VERSION: $GITHUB_REF
run: |
python -m build
- name: Publish package
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "permify"
VERSION = os.environ.get("PACKAGE_VERSION")
VERSION = os.environ.get("PACKAGE_VERSION").split('/')[-1]
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down

0 comments on commit d325a86

Please sign in to comment.