Skip to content

Commit

Permalink
Use separate artifact names
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Borean <jborean93@gmail.com>
  • Loading branch information
jborean93 committed Jan 29, 2024
1 parent d3017d3 commit d5de640
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: artifact
name: artifact-sdist
path: ./dist/*.tar.gz

build_wheels:
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Download gssapi sdist
uses: actions/download-artifact@v4
with:
name: artifact
name: artifact-sdist
path: ./

- name: Extract sdist
Expand All @@ -132,7 +132,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
name: artifact
name: artifact-wheel-${{ matrix.version }}

# To catch issues like this https://github.com/pythongssapi/python-gssapi/issues/327
assertion_build:
Expand All @@ -144,7 +144,7 @@ jobs:
- name: Download gssapi sdist
uses: actions/download-artifact@v4
with:
name: artifact
name: artifact-sdist
path: ./dist

- name: Compile Python with assertions
Expand Down Expand Up @@ -204,7 +204,8 @@ jobs:
- name: Download built project
uses: actions/download-artifact@v4
with:
name: artifact
name: artifact-*
merge-multiple: true
path: ./dist

- name: Test gssapi
Expand Down Expand Up @@ -254,7 +255,8 @@ jobs:
- name: Download built project
uses: actions/download-artifact@v4
with:
name: artifact
name: artifact-*
merge-multiple: true
path: ./dist

- name: Install the right python
Expand Down Expand Up @@ -282,7 +284,8 @@ jobs:
- name: Download built project
uses: actions/download-artifact@v4
with:
name: artifact
name: artifact-*
merge-multiple: true
path: ./dist

- name: Test gssapi
Expand Down Expand Up @@ -313,7 +316,8 @@ jobs:
- name: Download built project
uses: actions/download-artifact@v4
with:
name: artifact
name: artifact-*
merge-multiple: true
path: ./dist

- name: Create GitHub release artifact
Expand Down

0 comments on commit d5de640

Please sign in to comment.