Skip to content

Commit

Permalink
Further fixes to main.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Barnett committed Feb 10, 2025
1 parent b9868e8 commit 622a8e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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!
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version: 2025.2.12

Further fixes to main.yml.

Version: 2025.2.11

Updated main.yml to Artifacts v4.
Expand Down

0 comments on commit 622a8e2

Please sign in to comment.