Skip to content

Commit

Permalink
trying to build for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Aug 25, 2024
1 parent aa0854e commit 8303c26
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
- uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: arm64 x86_64
CIBW_ARCHS_LINUX: auto aarch64
CIBW_SKIP: cp27-* cp34-* cp35-* cp36-* *musllinux*
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*

Expand All @@ -60,26 +61,26 @@ jobs:
name: cibw-wheels-${{ matrix.os }}-py${{ matrix.python-version }}
path: wheelhouse/*.whl

upload_all:
name: Upload release
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/musica
permissions:
id-token: write
# upload_all:
# name: Upload release
# needs: [build_wheels, build_sdist]
# runs-on: ubuntu-latest
# environment:
# name: pypi
# url: https://pypi.org/p/musica
# permissions:
# id-token: write

steps:
- uses: actions/setup-python@v5
with:
python-version: "3.x"
# steps:
# - uses: actions/setup-python@v5
# with:
# python-version: "3.x"

- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true
# - uses: actions/download-artifact@v4
# with:
# pattern: cibw-*
# path: dist
# merge-multiple: true

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 8303c26

Please sign in to comment.