Skip to content

Commit b11b0a2

Browse files
committed
Adjust workflows to reflect new directory structure
1 parent 72ec146 commit b11b0a2

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@ jobs:
2222
python -m pip install --upgrade pip
2323
- name: Install MLCube
2424
run: |
25-
cd mlcube
2625
pip install -r requirements.txt
2726
python setup.py sdist bdist_wheel
2827
pip install dist/mlcube*.whl
2928
- name: Test MLCube CLI
3029
run: |
31-
cd mlcube
3230
pytest
3331
- name: Install MLCube Docker Runner
3432
run: |
@@ -73,4 +71,4 @@ jobs:
7371
- name: Test MLCube GCP CLI
7472
run: |
7573
cd runners/mlcube_gcp
76-
pytest
74+
pytest

.github/workflows/python-publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
pip install setuptools wheel twine
2323
- name: Build distribution
2424
run: |
25-
cd mlcube
2625
python setup.py sdist bdist_wheel
2726
- name: Publish
2827
uses: pypa/gh-action-pypi-publish@master
@@ -31,7 +30,7 @@ jobs:
3130
verify_metadata: true
3231
skip_existing: true
3332
password: ${{ secrets.PYPI_PASSWORD }}
34-
packages_dir: mlcube/dist/
33+
packages_dir: dist/
3534
repository_url: https://upload.pypi.org/legacy/
3635
verbose: true
3736
env:

0 commit comments

Comments
 (0)