Skip to content

Commit

Permalink
make build root generic
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Jul 26, 2023
1 parent 8c2d9d3 commit c4a17f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python_release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is autogenerated by maturin v1.1.0
# To update, run
#
# maturin generate-ci -m /home/storm/repos/cryo/crates/python/Cargo.toml github -o python_release.yml
# maturin generate-ci -m $REPO_ROOT/crates/python/Cargo.toml github -o python_release.yml
#
name: CI

Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --manifest-path /home/storm/repos/cryo/crates/python/Cargo.toml
args: --release --out dist --find-interpreter --manifest-path ${{ github.workspace }}/crates/python/Cargo.toml
sccache: 'true'
manylinux: auto
- name: Upload wheels
Expand All @@ -59,7 +59,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --manifest-path /home/storm/repos/cryo/crates/python/Cargo.toml
args: --release --out dist --find-interpreter --manifest-path ${{ github.workspace }}/crates/python/Cargo.toml
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -82,7 +82,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --manifest-path /home/storm/repos/cryo/crates/python/Cargo.toml
args: --release --out dist --find-interpreter --manifest-path ${{ github.workspace }}/crates/python/Cargo.toml
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -98,7 +98,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist --manifest-path /home/storm/repos/cryo/crates/python/Cargo.toml
args: --out dist --manifest-path ${{ github.workspace }}/crates/python/Cargo.toml
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit c4a17f3

Please sign in to comment.