We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f0135 commit b98758eCopy full SHA for b98758e
1 file changed
.github/workflows/ci.yml
@@ -68,9 +68,11 @@ jobs:
68
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
69
steps:
70
- uses: actions/checkout@v1
71
+ with:
72
+ path: python-libvmi
73
74
- name: Install Libvmi
- uses: ./.github/actions/libvmi-setup
75
+ uses: ./python-libvmi/.github/actions/libvmi-setup
76
77
- name: Set up Python 3.7 🐍
78
uses: actions/setup-python@v1
@@ -82,9 +84,12 @@ jobs:
82
84
python -m pip install wheel
83
85
python setup.py sdist
86
python setup.py bdist_wheel
87
+ working-directory: python-libvmi
88
89
- name: Publish on PyPI 🚀
90
uses: pypa/gh-action-pypi-publish@v1.3.1
91
with:
92
user: __token__
93
password: ${{ secrets.ACCESS_TOKEN }}
94
+ packages_dir: python-libvmi/dist
95
+
0 commit comments