Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
tags:
- '*'
pull_request:

jobs:
build:
Expand All @@ -13,19 +14,18 @@ jobs:
fail-fast: false
matrix:
include:
# Windows builds are disabled because maturin fails.
# - os: windows
# ls: dir
# target: x86_64
# manylinux: auto
# python-architecture: x64
# interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
# - os: windows
# ls: dir
# target: i686
# manylinux: auto
# python-architecture: x86
# interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: windows
ls: dir
target: x86_64
manylinux: auto
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: windows
ls: dir
target: i686
manylinux: auto
python-architecture: x86
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: macos
target: x86_64
manylinux: auto
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
target: armv7
manylinux: 2_28
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: ubuntu
target: ppc64le
manylinux: 2_28
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:

publish-to-pypi:
name: Publish Python 🐍 distribution 📦 to PyPI
if: endsWith(github.ref, '-debug-publish-action') != true
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
needs:
- build
runs-on: ubuntu-latest
Expand Down
Loading