From c48559669a4ace1f7960b985affee4585df216cc Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Tue, 26 Jan 2021 20:00:10 -0500 Subject: [PATCH] Rename aarch64 job --- .github/workflows/publishing.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publishing.yml b/.github/workflows/publishing.yml index 89525a59..5e0b58b6 100644 --- a/.github/workflows/publishing.yml +++ b/.github/workflows/publishing.yml @@ -73,12 +73,9 @@ jobs: path: ./wheelhouse/*.whl build-wheels-linux-custom-archs: - name: Build wheels Linux custom archs + name: Build wheels (linux-aarch64) needs: [tests, linters] runs-on: ubuntu-latest - strategy: - matrix: - arch: [aarch64] steps: - uses: actions/checkout@v2 - name: Set up QEMU @@ -87,7 +84,7 @@ jobs: with: python-version: 3.9 - run: pip install cibuildwheel==1.8.0 - - run: cibuildwheel --archs ${{ matrix.arch }} --output-dir wheelhouse + - run: cibuildwheel --archs aarch64 --output-dir wheelhouse - uses: actions/upload-artifact@v2 with: path: ./wheelhouse/*.whl