Merge pull request #1397 from hacklschorsch/4132.more-unique-upload-names-reprise

4132.more unique upload names reprise
This commit is contained in:
meejah 2024-12-02 11:43:32 -07:00 committed by GitHub
commit a46c41cb28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -95,13 +95,13 @@ jobs:
- name: Upload eliot.log
uses: actions/upload-artifact@v4
with:
name: eliot-${{ matrix.runs-on }}.log
name: "eliot-${{ matrix.os }}-Python-${{ matrix.python-version }}.log"
path: eliot.log
- name: Upload trial log
uses: actions/upload-artifact@v4
with:
name: test-${{ matrix.runs-on }}.log
name: "test-${{ matrix.os }}-Python-${{ matrix.python-version }}.log"
path: _trial_temp/test.log
# Upload this job's coverage data to Coveralls. While there is a GitHub
@ -233,7 +233,7 @@ jobs:
uses: actions/upload-artifact@v4
if: failure()
with:
name: integration.eliot-${{ matrix.run-on }}.json
name: "integration.eliot-${{ matrix.os }}-Python-${{ matrix.python-version }}.json"
path: integration.eliot.json
packaging:

View File

@ -0,0 +1 @@