Skip to content

Commit b98758e

Browse files
committed
ci: fix publish on PyPI
1 parent 18f0135 commit b98758e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,11 @@ jobs:
6868
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
6969
steps:
7070
- uses: actions/checkout@v1
71+
with:
72+
path: python-libvmi
7173

7274
- name: Install Libvmi
73-
uses: ./.github/actions/libvmi-setup
75+
uses: ./python-libvmi/.github/actions/libvmi-setup
7476

7577
- name: Set up Python 3.7 🐍
7678
uses: actions/setup-python@v1
@@ -82,9 +84,12 @@ jobs:
8284
python -m pip install wheel
8385
python setup.py sdist
8486
python setup.py bdist_wheel
87+
working-directory: python-libvmi
8588

8689
- name: Publish on PyPI 🚀
8790
uses: pypa/gh-action-pypi-publish@v1.3.1
8891
with:
8992
user: __token__
9093
password: ${{ secrets.ACCESS_TOKEN }}
94+
packages_dir: python-libvmi/dist
95+

0 commit comments

Comments
 (0)