Skip to content

Commit

Permalink
Update working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
haiiliin committed Jun 19, 2024
1 parent a285a52 commit f81fa9c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ jobs:
pipx install cibuildwheel
- name: Build wheels
run:
cd python && cibuildwheel --output-dir wheelhouse
run: |
cibuildwheel --output-dir wheelhouse
working-directory: python
env:
CIBW_ARCHS: ${{ github.event_name == 'release' && 'auto' || 'auto64' }}
CIBW_BUILD: ${{ github.event_name == 'release' && 'cp312-*' || 'cp312-macosx* cp312-win* cp312-manylinux*' }}
Expand Down Expand Up @@ -78,7 +79,8 @@ jobs:
- name: Build source distribution
run: |
cd python && python -m build --sdist --outdir dist
python -m build --sdist --outdir dist
working-directory: python

- uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit f81fa9c

Please sign in to comment.