8000 Update test-pypi-publish.yml · tableau/document-api-python@aece1f5 · GitHub
[go: up one dir, main page]

Skip to content

Commit aece1f5

Browse files
authored
Update test-pypi-publish.yml
add back build step
1 parent 05b19a4 commit aece1f5

File tree

Expand file tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test-pypi-publish.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@ jobs:
2121
uses: actions/setup-python@v2
2222
with:
2323
python-version: ${{ matrix.python-version }}
24-
24+
- name: Install dependencies
25+
run: |< 6A3D /span>
26+
python -m pip install --upgrade pip
27+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
28+
- name: Package
29+
run: |
30+
python setup.py sdist
31+
python setup.py bdist_wheel
2532
- name: Publish 📦 to Test PyPI
2633
uses: pypa/gh-action-pypi-publish@master
2734
with:

0 commit comments

Comments
 (0)
0