Skip to content

Commit

Permalink
Merge pull request #478 from bwoodsend/wheels-for-musl-aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 20, 2021
2 parents c0fc29b + f61e082 commit 9ddb36b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/deploy-wheels-linux.yml
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches:
- main
pull_request:
paths:
- ".github/workflows/deploy-wheels-linux.yml"
- "scripts/build-manylinux-wheels.sh"
release:
types:
- published
Expand All @@ -18,6 +22,7 @@ jobs:
"manylinux2014_aarch64",
"manylinux2014_i686",
"manylinux2014_x86_64",
"musllinux_1_1_aarch64",
"musllinux_1_1_x86_64",
]
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9", "3.10-dev"]
Expand All @@ -31,6 +36,7 @@ jobs:
- { python-version: "3.10-dev", version-tag: "cp310-cp310" }
exclude:
# No PyPy3 on musllinux
- { python-version: "pypy3", wheel: "musllinux_1_1_aarch64" }
- { python-version: "pypy3", wheel: "musllinux_1_1_x86_64" }

steps:
Expand Down Expand Up @@ -73,7 +79,9 @@ jobs:
run: twine upload --skip-existing dist/*.whl

- name: Publish package to TestPyPI
if: github.repository == 'ultrajson/ultrajson'
if: |
github.repository == 'ultrajson/ultrajson' &&
github.ref == 'refs/heads/main'
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.test_pypi_password }}
Expand Down

0 comments on commit 9ddb36b

Please sign in to comment.