Skip to content

Commit

Permalink
Workaround for PyO3/maturin-action#99.
Browse files Browse the repository at this point in the history
  • Loading branch information
daemontus committed Nov 17, 2022
1 parent 67c3d18 commit b1d1c97
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
with:
manylinux: auto
command: build
args: --release -o dist
args: --release -o target/dist
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist
path: target/dist

windows:
runs-on: windows-latest
Expand All @@ -27,12 +27,12 @@ jobs:
- uses: PyO3/maturin-action@v1
with:
command: build
args: --release --no-sdist -o dist
args: --release --no-sdist -o target/dist
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist
path: target/dist

macos:
runs-on: macos-latest
Expand All @@ -41,12 +41,12 @@ jobs:
- uses: PyO3/maturin-action@v1
with:
command: build
args: --release --no-sdist -o dist --universal2
args: --release --no-sdist -o target/dist --universal2
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist
path: target/dist

release:
name: Release
Expand Down

0 comments on commit b1d1c97

Please sign in to comment.