File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -42,20 +42,17 @@ jobs:
4242
4343 # Build the binary wheel as well as the source tar
4444 - name : Build Objects
45- # if: startsWith(github.ref, 'refs/tags')
46- run : python setup.py sdist bdist_wheel
45+ run : |
46+ pip install -q twine wheel
47+ python setup.py sdist bdist_wheel
4748
4849 # Ensure the objects were packaged correctly and there wasn't an issue with
4950 # the compilation or packaging process.
5051 - name : Check Objects
51- # if: startsWith(github.ref, 'refs/tags')
52- run : |
53- pip install -q twine wheel
54- twine check dist/*
52+ run : twine check dist/*
5553
5654 # Upload the packages on all develop and main pipleines for test consumption
5755 - name : Upload HTML Docs
58- # if: startsWith(github.ref, 'refs/tags')
5956 uses : actions/upload-artifact@v2
6057 with :
6158 name : packages
You can’t perform that action at this time.
0 commit comments