diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index be57963ef..373f4543a 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -41,16 +41,18 @@ jobs: - uses: conda-incubator/setup-miniconda@v3 if: runner.os == 'macOS' - - name: Fix permissions for conda packages directory - run: sudo chmod -R u+w /Users/runner/conda_pkgs_dir - if: runner.os == 'macOS' - + - name: Install cibuildwheel run: python -m pip install cibuildwheel==2.19.2 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse + - name: To avoid clean up error + run: conda remove libcxx + if: runner.os == 'macOS' && runner.arch == 'ARM64' + + - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl