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:
42
42
43
43
# Build the binary wheel as well as the source tar
44
44
- 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
47
48
48
49
# Ensure the objects were packaged correctly and there wasn't an issue with
49
50
# the compilation or packaging process.
50
51
- 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/*
55
53
56
54
# Upload the packages on all develop and main pipleines for test consumption
57
55
- name : Upload HTML Docs
58
- # if: startsWith(github.ref, 'refs/tags')
59
56
uses : actions/upload-artifact@v2
60
57
with :
61
58
name : packages
You can’t perform that action at this time.
0 commit comments