From c6c7d8e2abd6737c2012a8d5f15a28c074b47dd2 Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama Date: Sun, 10 Sep 2023 13:54:30 +0900 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 130b754..62a1ae3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,10 +54,10 @@ jobs: run: | rustup update stable pip3 install twine build - # rustup target add ${{ matrix.target }} + rustup target add ${{ matrix.target }} - name: upload run: | - cargo build --release + cargo build --release --target ${{ matrix.target }} python3 -m build --wheel twine upload -u mtshiba -p ${{ secrets.PYPI_PASSWORD }} dist/* # maturin publish -u mtshiba -p ${{ secrets.PYPI_PASSWORD }} --target ${{ matrix.target }} --skip-existing