Skip to content

Commit c1912d5

Browse files
committed
updated cargo file path
1 parent 352f648 commit c1912d5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build-github-actions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: PyO3/maturin-action@v1
2525
with:
2626
target: ${{ matrix.target }}
27-
args: --release --out dist -m rust/Cargo.toml
27+
args: --release --out dist -m rust/maprando/Cargo.toml
2828
- name: Set env
2929
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
3030
- name: Create Release
@@ -58,7 +58,7 @@ jobs:
5858
uses: PyO3/maturin-action@v1
5959
with:
6060
target: ${{ matrix.target }}
61-
args: --release --out dist -m rust/Cargo.toml
61+
args: --release --out dist -m rust/maprando/Cargo.toml
6262
- name: Set env
6363
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
6464
- name: Create Release
@@ -89,15 +89,15 @@ jobs:
8989
with:
9090
target: ${{ matrix.target }}
9191
manylinux: auto
92-
args: --release --out dist -m rust/Cargo.toml -i python${{ matrix.python }}
92+
args: --release --out dist -m rust/maprando/Cargo.toml -i python${{ matrix.python }}
9393
- name: Build aarch64 wheels
9494
uses: PyO3/maturin-action@v1
9595
# One of our deps, "ring", needs a newer sysroot than what "manylinux: auto" provides.
9696
if: ${{ matrix.target == 'aarch64' }}
9797
with:
9898
target: ${{ matrix.target }}
9999
manylinux: 2_28
100-
args: --release --out dist -m rust/Cargo.toml -i python${{ matrix.python }}
100+
args: --release --out dist -m rust/maprando/Cargo.toml -i python${{ matrix.python }}
101101
- name: Set env
102102
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
103103
- name: Create Release

.github/workflows/manual-build-github-actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: PyO3/maturin-action@v1
2020
with:
2121
target: ${{ matrix.target }}
22-
args: --release --out dist -m rust/Cargo.toml
22+
args: --release --out dist -m rust/maprando/Cargo.toml
2323
- name: Set env
2424
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
2525
- name: Create Release
@@ -50,7 +50,7 @@ jobs:
5050
# uses: PyO3/maturin-action@v1
5151
# with:
5252
# target: ${{ matrix.target }}
53-
# args: --release --out dist -m rust/Cargo.toml
53+
# args: --release --out dist -m rust/maprando/Cargo.toml
5454
# - name: Set env
5555
# run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
5656
# - name: Create Release
@@ -77,7 +77,7 @@ jobs:
7777
# with:
7878
# target: ${{ matrix.target }}
7979
# manylinux: auto
80-
# args: --release --out dist -m rust/Cargo.toml -i python${{ matrix.python }}
80+
# args: --release --out dist -m rust/maprando/Cargo.toml -i python${{ matrix.python }}
8181
# - name: Set env
8282
# run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
8383
# - name: Create Release

0 commit comments

Comments
 (0)