Skip to content

Commit

Permalink
Updated main.yml to Artifacts v4.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Barnett committed Feb 10, 2025
1 parent 8225213 commit b9868e8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: regex-files
name: regex-files-wheels-${{ matrix.runs-on }}
path: wheelhouse/*.whl

# I cannot get this to work!
Expand Down Expand Up @@ -111,15 +111,15 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
- name: Upload source distribution
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: regex-files
name: regex-files-dist-${{ matrix.runs-on }}
path: dist/*.tar.gz

- name: Upload manylinux1_x86_64 wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: regex-files
name: regex-files-manylinux2010-${{ matrix.runs-on }}
path: wheelhouse/*.whl

# Build and upload aarch64/ppc64le/s390x wheels.
Expand Down Expand Up @@ -153,9 +153,9 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
- name: Upload ${{ matrix.arch }} wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: regex-files
name: regex-files-arch-${{ matrix.runs-on }}
path: wheelhouse/*.whl

# Upload to PyPI
Expand All @@ -165,10 +165,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: regex-files
pattern: regex-files-*
path: dist
merge-multiple: true

- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
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.11

Updated main.yml to Artifacts v4.

Version: 2025.2.10

Git issue 551: Infinite loop on V1 search
Expand Down

0 comments on commit b9868e8

Please sign in to comment.