Skip to content

Commit 3eec8b2

Browse files
committed
fix minor typo
1 parent 39126b5 commit 3eec8b2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- uses: actions/checkout@v3
1616

1717
- name: Build sdist
18-
run: pipx run build --sdist ${{github.workspace}}/python/
18+
run: pipx run build --sdist ${{github.workspace}}/
1919
- name: Move sdist to dist
20-
run: mkdir -p dist && mv ${{github.workspace}}/python/dist/*.tar.gz dist/
20+
run: mkdir -p dist && mv ${{github.workspace}}/dist/*.tar.gz dist/
2121

2222
- uses: actions/upload-artifact@v3
2323
with:
@@ -39,13 +39,13 @@ jobs:
3939
env: # build 1 build per platform just to make sure we can do it later when releasing
4040
CIBW_BUILD: "cp312-*"
4141
with:
42-
package-dir: ${{github.workspace}}/python/
42+
package-dir: ${{github.workspace}}/
4343

4444
- name: Build all wheels
4545
if: github.event_name == 'release'
4646
uses: pypa/cibuildwheel@v2.12.0
4747
with:
48-
package-dir: ${{github.workspace}}/python/
48+
package-dir: ${{github.workspace}}/
4949

5050
- uses: actions/upload-artifact@v3
5151
with:

0 commit comments

Comments
 (0)