Skip to content

Commit

Permalink
Add checkout, drop names
Browse files Browse the repository at this point in the history
  • Loading branch information
ajjackson committed Jan 31, 2024
1 parent 46d41dc commit 804c566
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build_upload_pypi_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ jobs:
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' # && github.event_name == 'release'
uses: actions/upload-artifact@v3
with:
name: python source distribution
name: python-source-distribution
path: dist

- name: Upload wheels as build artifacts
uses: actions/upload-artifact@v3
with:
name: binary wheels
name: binary-wheels
path: wheelhouse/*-${{ matrix.wheelname }}*.whl

publish:
Expand All @@ -103,16 +103,19 @@ jobs:
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@3
with:
fetch-depth: 0 # Ensure tags are fetched for versioning

- name: Download source package to Ubuntu environment
uses: actions/download-artifact@v4
with:
name: python source distribution
path: dist/

- name: Download binary artifacts to Ubuntu environment
uses: actions/download-artifact@v4
with:
name: binary wheels
path: dist/

- name: List Files
Expand Down

0 comments on commit 804c566

Please sign in to comment.