Skip to content

Commit

Permalink
fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
nleroy917 committed May 15, 2024
1 parent 0c135f8 commit 8919045
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels-linux-${{ matrix.platform.target }}
name: wheels
path: textractor-py/dist

windows:
Expand All @@ -67,9 +67,9 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels-windows-${{ matrix.platform.target }}
name: wheels
path: textractor-py/dist

macos:
Expand All @@ -94,9 +94,9 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels-macos-${{ matrix.platform.target }}
name: wheels
path: textractor-py/dist

sdist:
Expand All @@ -110,9 +110,9 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels-sdist
name: wheels
path: textractor-py/dist

release:
Expand Down

0 comments on commit 8919045

Please sign in to comment.