we had been uploading using multiple matrix cells, or at least trying to
This commit is contained in:
parent
47e7678380
commit
4a36728ae6
|
@ -159,11 +159,12 @@ jobs:
|
||||||
|
|
||||||
- name: Upload coverage data
|
- name: Upload coverage data
|
||||||
# pin to upload coverage from only one matrix entry, otherwise coverage gets confused later
|
# pin to upload coverage from only one matrix entry, otherwise coverage gets confused later
|
||||||
if: always() && matrix.session == 'tests' && matrix.python == '3.11' && matrix.os == 'ubuntu-latest'
|
if: always() && matrix.session == 'tests' && matrix.python == '3.11' && matrix.os == 'ubuntu-latest' && matrix.database == 'mysql'
|
||||||
uses: "actions/upload-artifact@v3.0.0"
|
uses: "actions/upload-artifact@v3.0.0"
|
||||||
|
# this action doesn't seem to respect working-directory so include working-directory value in path
|
||||||
with:
|
with:
|
||||||
name: coverage-data
|
name: coverage-data
|
||||||
path: ".coverage.*"
|
path: "spiffworkflow-backend/.coverage.*"
|
||||||
|
|
||||||
- name: Upload documentation
|
- name: Upload documentation
|
||||||
if: matrix.session == 'docs-build'
|
if: matrix.session == 'docs-build'
|
||||||
|
|
Loading…
Reference in New Issue