Skip to content

Commit

Permalink
deploy.yml: Upgrade action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wannesm committed Jun 19, 2024
1 parent 13e03dc commit 15d8b3c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Store wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist/*.whl


Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Store wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist/*.whl

build_windows:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Store wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist/*.whl

build_sdist:
Expand All @@ -154,7 +154,7 @@ jobs:
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-source
path: dist/*.tar.gz


Expand All @@ -168,7 +168,8 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
pattern: dist-*
merge-multiple: true
path: dist

- name: Publish package to PyPI
Expand Down

0 comments on commit 15d8b3c

Please sign in to comment.