From 58cda20632d7b8ff3dc6f8fd6e832ddf11604eaf 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 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 130b754..8b896f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,12 +30,12 @@ jobs: strategy: matrix: include: - - target: armv7-unknown-linux-gnueabihf - os: ubuntu-latest - - target: aarch64-unknown-linux-gnu - os: ubuntu-latest - - target: aarch64-apple-darwin - os: macos-latest + # - target: armv7-unknown-linux-gnueabihf + # os: ubuntu-latest + # - target: aarch64-unknown-linux-gnu + # os: ubuntu-latest + # - target: aarch64-apple-darwin + # os: macos-latest - target: x86_64-unknown-linux-gnu os: ubuntu-latest - target: x86_64-apple-darwin @@ -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