Skip to content

Commit

Permalink
Downgrade upload-artifact in manylinux workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 4, 2024
1 parent 7978791 commit bce2a54
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 31 deletions.
9 changes: 2 additions & 7 deletions repo_helper/templates/manylinux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ jobs:
pip-wheel-args: '--no-deps -w ./wheelhouse'

- name: Upload Artifacts 🚀
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: "wheels-${{ brace('matrix.config.tag') }}"
name: "wheels-{{ tag }}"
path: wheelhouse/

- name: "Run Tests"
Expand All @@ -79,11 +79,6 @@ jobs:
# TODO: Upload coverage to coveralls
done
- uses: actions/upload-artifact@v4
with:
name: wheels-{{ tag }}
path: wheelhouse/

- name: Upload distribution to PyPI 🚀
if: startsWith(github.ref, 'refs/tags/')
uses: pypa/gh-action-pypi-publish@v1.4.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
pip-wheel-args: '--no-deps -w ./wheelhouse'

- name: Upload Artifacts 🚀
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: "wheels-${{ matrix.config.tag }}"
path: wheelhouse/
Expand All @@ -83,11 +83,6 @@ jobs:
# TODO: Upload coverage to coveralls
done
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.config.tag }}
path: wheelhouse/

- name: Upload distribution to PyPI 🚀
if: startsWith(github.ref, 'refs/tags/')
uses: pypa/gh-action-pypi-publish@v1.4.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
pip-wheel-args: '--no-deps -w ./wheelhouse'

- name: Upload Artifacts 🚀
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: "wheels-${{ matrix.config.tag }}"
path: wheelhouse/
Expand All @@ -83,11 +83,6 @@ jobs:
# TODO: Upload coverage to coveralls
done
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.config.tag }}
path: wheelhouse/

- name: Upload distribution to PyPI 🚀
if: startsWith(github.ref, 'refs/tags/')
uses: pypa/gh-action-pypi-publish@v1.4.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
pip-wheel-args: '--no-deps -w ./wheelhouse'

- name: Upload Artifacts 🚀
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: "wheels-${{ matrix.config.tag }}"
path: wheelhouse/
Expand All @@ -83,11 +83,6 @@ jobs:
# TODO: Upload coverage to coveralls
done
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.config.tag }}
path: wheelhouse/

- name: Upload distribution to PyPI 🚀
if: startsWith(github.ref, 'refs/tags/')
uses: pypa/gh-action-pypi-publish@v1.4.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
pip-wheel-args: '--no-deps -w ./wheelhouse'

- name: Upload Artifacts 🚀
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: "wheels-${{ matrix.config.tag }}"
path: wheelhouse/
Expand All @@ -83,11 +83,6 @@ jobs:
# TODO: Upload coverage to coveralls
done
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.config.tag }}
path: wheelhouse/

- name: Upload distribution to PyPI 🚀
if: startsWith(github.ref, 'refs/tags/')
uses: pypa/gh-action-pypi-publish@v1.4.2
Expand Down

0 comments on commit bce2a54

Please sign in to comment.