File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,14 @@ jobs:
3131 id : set-version
3232 run : |
3333 VERSION=$(grep version setup.cfg | cut -d= -f2 | tr -d '[:blank:]')
34- [ $GITHUB_EVENT_NAME == 'release' ] && VERSION=${{ github.event.release.tag_name }} && VERSION=${VERSION/v/}
3534 [ $GITHUB_EVENT_NAME == 'push' ] && VERSION+=b && VERSION+=$(($(git tag -l "*$VERSION*" | cut -db -f2 | sort -n | tail -1)+1))
35+ [ $GITHUB_EVENT_NAME == 'release' ] && VERSION=${{ github.event.release.tag_name }} && VERSION=${VERSION/v/}
36+ echo VERSION = $VERSION
3637 sed -ie "s/version = .*/version = $VERSION/" setup.cfg
3738 python -m pip install --upgrade pip
3839 pip install build
3940 echo ::set-output name=version::$VERSION
40- NAME="sqlalchemy_iris "-${VERSION}-py3-none-any
41+ NAME="sqlalchemy-iris "-${VERSION}-py3-none-any
4142 echo ::set-output name=name::$NAME
4243 - name : Build package
4344 run : python -m build
Original file line number Diff line number Diff line change 11[metadata]
22name = sqlalchemy-iris
3- version = 0.1.0
3+ version = 0.1.1
44description = InterSystems IRIS for SQLAlchemy
55long_description = file: README.md
66url = https://github.com/caretdev/sqlalchemy-iris
You can’t perform that action at this time.
0 commit comments