Skip to content

Commit

Permalink
Downgrade artifact from v4 to v3
Browse files Browse the repository at this point in the history
To handle errors in pip builds that arise from artifact v4, documented here: actions/upload-artifact#478
  • Loading branch information
kamronald committed Aug 26, 2024
1 parent b3901ed commit bf9bbbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl

Expand All @@ -110,6 +110,6 @@ jobs:
- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
if: github.event.inputs.release-pypi == 'true'

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit bf9bbbb

Please sign in to comment.