File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,12 @@ jobs:
3535 [ $GITHUB_EVENT_NAME == 'push' ] && VERSION+=b && VERSION+=$(($(git tag -l "*$VERSION*" | cut -db -f2 | sort -n | tail -1)+1))
3636 sed -ie "s/version = .*/version = $VERSION/" setup.cfg
3737 python -m pip install --upgrade pip
38- pip install -r requirements.txt
39- pip install build
40- echo ::set-output name=version::$VERSION
38+ pip install -U pip setuptools
39+ pip install -r requirements-dev.txt
40+ pip install -r requirements-iris.txt
41+ echo version=$VERSION >> $GITHUB_OUTPUT
4142 NAME="django_iris"-${VERSION}-py3-none-any
42- echo ::set-output name=name:: $NAME
43+ echo name=$NAME >> $GITHUB_OUTPUT
4344 - name : Build package
4445 run : ./scripts/build-dist.sh
4546 - name : Publish package
Original file line number Diff line number Diff line change 1+ wheel
2+ flake8
3+ pytest
4+ black
5+ twine
You can’t perform that action at this time.
0 commit comments