From fab18c0ff02191f9c1eb31496c7950259b2d332d Mon Sep 17 00:00:00 2001 From: Taoning Wang Date: Wed, 21 Feb 2024 11:26:20 -0800 Subject: [PATCH] fix GHA bug --- .github/workflows/pypi_upload.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml index 4189701..4f40337 100644 --- a/.github/workflows/pypi_upload.yml +++ b/.github/workflows/pypi_upload.yml @@ -17,16 +17,14 @@ on: jobs: build-all: - runs-on: ${{ matrix.os }} - defaults: - run: - shell: cmd strategy: fail-fast: false matrix: os: [windows-latest, macos-latest, ubuntu-latest, macos-14] + runs-on: ${{ matrix.os }} + steps: - name: Checkout pyradiance uses: actions/checkout@v4 @@ -39,7 +37,7 @@ jobs: python-version: '3.10' - name: Get dependencies - run: python -m pip install requests wheel auditwheel pytest + run: pip install requests wheel auditwheel pytest - name: Build Wheels run: python setup.py bdist_wheel