Skip to content

Commit

Permalink
Attempt fixing the upload-artifact name collisions
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Feb 14, 2024
1 parent 0e5d3f5 commit 86d114e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}-${{ matrix.os }}-${{ matrix.arch }}-mysql
path: ".coverage.*"

postgres:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.database }}
path: ".coverage.*"

sqlite:
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}-${{ matrix.os }}-${{ matrix.arch }}-sqlite
path: ".coverage.*"

coverage:
Expand All @@ -214,7 +214,8 @@ jobs:
- name: Download coverage data.
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage & check percentage
run: |
Expand Down

0 comments on commit 86d114e

Please sign in to comment.