Skip to content

Commit

Permalink
fixing path
Browse files Browse the repository at this point in the history
  • Loading branch information
willwade committed Jul 7, 2024
1 parent cad699e commit ef2724e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ jobs:
uses: actions/download-artifact@v3
with:
name: wheelhouse-ubuntu-latest-${{ matrix.python-version }}
path: wheelhouse/ubuntu-latest/${{ matrix.python-version }}
path: wheelhouse

- name: Download wheels for windows
uses: actions/download-artifact@v3
with:
name: wheelhouse-windows-latest-${{ matrix.python-version }}
path: wheelhouse/windows-latest/${{ matrix.python-version }}
path: wheelhouse

- name: Download wheels for macos
uses: actions/download-artifact@v3
with:
name: wheelhouse-macos-latest-${{ matrix.python-version }}
path: wheelhouse/macos-latest/${{ matrix.python-version }}
path: wheelhouse

- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -105,37 +105,37 @@ jobs:
uses: actions/download-artifact@v3
with:
name: wheelhouse-ubuntu-latest-3.10
path: wheelhouse/ubuntu-latest/3.10
path: wheelhouse

- name: Download wheels for windows
uses: actions/download-artifact@v3
with:
name: wheelhouse-windows-latest-3.10
path: wheelhouse/windows-latest/3.10
path: wheelhouse

- name: Download wheels for macos
uses: actions/download-artifact@v3
with:
name: wheelhouse-macos-latest-3.10
path: wheelhouse/macos-latest/3.10
path: wheelhouse

- name: Download wheels for linux
uses: actions/download-artifact@v3
with:
name: wheelhouse-ubuntu-latest-3.11
path: wheelhouse/ubuntu-latest/3.11
path: wheelhouse

- name: Download wheels for windows
uses: actions/download-artifact@v3
with:
name: wheelhouse-windows-latest-3.11
path: wheelhouse/windows-latest/3.11
path: wheelhouse

- name: Download wheels for macos
uses: actions/download-artifact@v3
with:
name: wheelhouse-macos-latest-3.11
path: wheelhouse/macos-latest/3.11
path: wheelhouse

- name: Publish package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit ef2724e

Please sign in to comment.