1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-06-01 09:36:07 +02:00

Build 32-bit wheels for Windows

This commit is contained in:
Hugo van Kemenade 2021-09-21 16:05:51 +03:00
parent 9ddb36bc40
commit 365ee5de1a

View File

@ -4,6 +4,9 @@ on:
push:
branches:
- main
pull_request:
paths:
- ".github/workflows/deploy-wheels-windows-macos.yml"
release:
types:
- published
@ -14,8 +17,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macOS-latest]
os: [windows-latest, macos-latest]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10-dev"]
architecture: [x64, x86]
exclude:
- {os: macos-latest, architecture: x86}
steps:
- uses: actions/checkout@v2
@ -26,6 +32,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install dependencies
run: |
@ -53,7 +60,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 }}