Skip to content

Commit

Permalink
Reverted to actions/download-artifact@v3 and actions/upload-artifact@…
Browse files Browse the repository at this point in the history
…v3 in main.yml because GitHub Actions failed when using them.
  • Loading branch information
Matthew Barnett committed Sep 11, 2024
1 parent 1bcd42e commit 64834c7
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 @@ -59,7 +59,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: regex-files
path: wheelhouse/*.whl
Expand Down Expand Up @@ -111,13 +111,13 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
- name: Upload source distribution
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: regex-files
path: dist/*.tar.gz

- name: Upload manylinux1_x86_64 wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: regex-files
path: wheelhouse/*.whl
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
- name: Upload ${{ matrix.arch }} wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: regex-files
path: wheelhouse/*.whl
Expand All @@ -165,7 +165,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: regex-files
path: dist
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: 2024.9.14

Reverted to actions/download-artifact@v3 and actions/upload-artifact@v3 in main.yml because GitHub Actions failed when using them.

Version: 2024.9.13

Updated to actions/upload-artifact@v4 in main.yml.
Expand Down

0 comments on commit 64834c7

Please sign in to comment.