Skip to content

Commit 1caa2f4

Browse files
committed
Fix build workflow.
1 parent fdb973b commit 1caa2f4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

deploy.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,9 @@ password: ${PYPI_PASSWORD}
1212
EOF
1313

1414
pip install twine
15-
twine upload -r pypi dist/*
1615

16+
mkdir dist
17+
cp build-py2/dist/* dist/
18+
cp build-py3/dist/* dist/
19+
20+
twine upload -r pypi dist/*

wercker.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,4 @@ deploy:
6464
- script:
6565
name: deploy to pypi
6666
code: |
67-
cd build-py3
6867
sh deploy.sh

0 commit comments

Comments
 (0)