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:
31
31
id : set-version
32
32
run : |
33
33
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/}
35
34
[ $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
36
37
sed -ie "s/version = .*/version = $VERSION/" setup.cfg
37
38
python -m pip install --upgrade pip
38
39
pip install build
39
40
echo ::set-output name=version::$VERSION
40
- NAME="sqlalchemy_iris "-${VERSION}-py3-none-any
41
+ NAME="sqlalchemy-iris "-${VERSION}-py3-none-any
41
42
echo ::set-output name=name::$NAME
42
43
- name : Build package
43
44
run : python -m build
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = sqlalchemy-iris
3
- version = 0.1.0
3
+ version = 0.1.1
4
4
description = InterSystems IRIS for SQLAlchemy
5
5
long_description = file: README.md
6
6
url = https://github.com/caretdev/sqlalchemy-iris
You can’t perform that action at this time.
0 commit comments