Skip to content

Commit 0171187

Browse files
committed
Reorder install and remove tag constraints
1 parent a9948ed commit 0171187

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)