1
1
mirror of https://github.com/mrabarnett/mrab-regex.git synced 2025-10-05 20:02:39 +02:00

Further fixes to main.yml.

This commit is contained in:
Matthew Barnett
2025-02-10 23:32:39 +00:00
parent b9868e8adc
commit 622a8e2cea
2 changed files with 9 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ on:
- '*'
env:
PYTHON_VER: '3.10' # Python to run test/cibuildwheel
PYTHON_VER: '3.11' # Python to run test/cibuildwheel
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*
CIBW_TEST_COMMAND: python -m unittest regex.test_regex
@@ -61,7 +61,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: regex-files-wheels-${{ matrix.runs-on }}
name: regex-files-wheels-${{ matrix.platform }}
path: wheelhouse/*.whl
# I cannot get this to work!
@@ -113,13 +113,13 @@ jobs:
- name: Upload source distribution
uses: actions/upload-artifact@v4
with:
name: regex-files-dist-${{ matrix.runs-on }}
name: regex-files-dist
path: dist/*.tar.gz
- name: Upload manylinux1_x86_64 wheels
uses: actions/upload-artifact@v4
with:
name: regex-files-manylinux2010-${{ matrix.runs-on }}
name: regex-files-manylinux2010
path: wheelhouse/*.whl
# Build and upload aarch64/ppc64le/s390x wheels.
@@ -155,7 +155,7 @@ jobs:
- name: Upload ${{ matrix.arch }} wheels
uses: actions/upload-artifact@v4
with:
name: regex-files-arch-${{ matrix.runs-on }}
name: regex-files-arch-${{ matrix.arch }}
path: wheelhouse/*.whl
# Upload to PyPI

View File

@@ -1,3 +1,7 @@
Version: 2025.2.12
Further fixes to main.yml.
Version: 2025.2.11
Updated main.yml to Artifacts v4.