We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2b274d commit be927edCopy full SHA for be927ed
.github/workflows/release.yml
@@ -41,8 +41,9 @@ jobs:
41
- name: Install from test and test running
42
run: |
43
pip install --extra-index-url https://test.pypi.org/simple libpy
44
- python -c 'import libpy;print(libpy.__version__)'
+ mkdir tmp && cd tmp && python -c 'import libpy;print(libpy.__version__)'
45
pip uninstall -y libpy
46
+ cd ..
47
48
- name: Publish distribution 📦 to PyPI
49
uses: pypa/gh-action-pypi-publish@master
@@ -53,7 +54,8 @@ jobs:
53
54
- name: Install and test running
55
56
pip install libpy
- python -c 'import libpy;print(libpy.__version__)
57
+ mkdir tmp && cd tmp && python -c 'import libpy;print(libpy.__version__)
58
59
60
- name: Build the docs
61
0 commit comments