File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 88 deploy :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v2
11+ - uses : actions/checkout@v4
1212 - name : Set up Python
13- uses : actions/setup-python@v1
13+ uses : actions/setup-python@v4
1414 with :
1515 python-version : ' 3.x'
16+ - name : Install dependencies
17+ run : |
18+ python -m pip install --upgrade pip
19+ pip install setuptools wheel twine
1620 - name : Check consistency between the package version and release tag
1721 run : |
1822 RELEASE_VER=${GITHUB_REF#refs/*/}
2125 then
2226 echo "package ver. ($PACKAGE_VER) != release ver. ($RELEASE_VER)"; exit 1
2327 fi
24- - name : Install dependencies
25- run : |
26- python -m pip install --upgrade pip
27- pip install setuptools wheel twine
2828 - name : Build and publish
2929 env :
3030 TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
You can’t perform that action at this time.
0 commit comments