We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20a083a commit e334387Copy full SHA for e334387
.github/workflows/coverage-reporter.yml
.github/workflows/run-matrix.yml
@@ -59,15 +59,10 @@ jobs:
59
}
60
const framework = normalizeName('${{ matrix.framework }}')
61
const version = normalizeName('${{ matrix.version }}')
62
- return `test-results-${version}-${framework}`
+ return `${version}-${framework}`
63
- if: success() || failure()
64
name: Upload JUnit Test Results
65
uses: actions/upload-artifact@v4
66
with:
67
- name: ${{ steps.normalize-junit.outputs.result }}
+ name: test-results-${{ steps.normalize-junit.outputs.result }}
68
path: "**/spec/junit-reports/**/*ruby-agent-junit.xml"
69
- - if: success() || failure()
70
- uses: actions/upload-artifact@v3
71
- with:
72
- name: coverage
73
- path: "coverage/"
0 commit comments