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 34a53d9 commit 5e16c4aCopy full SHA for 5e16c4a
.github/workflows/test.yml
@@ -50,8 +50,15 @@ jobs:
50
env:
51
RUBY_VERSION: ${{ matrix.ruby-image }}
52
run: bin/dev --image=${{ matrix.ruby-image }} --frameworks=${{ matrix.framework }}
53
- - uses: actions/upload-artifact@v3
+ - name: prepare artifact name # because it cannot have colons ":"
54
+ id: artifact_name
55
+ run: |
56
+ echo "artifact_name=test-results-${RUBY_IMAGE//:/_}-${FRAMEWORK}" >> "${GITHUB_OUTPUT}"
57
+ env:
58
+ RUBY_IMAGE: ${{ matrix.ruby-image }}
59
+ FRAMEWORK: ${{ matrix.framework }}
60
+ - uses: actions/upload-artifact@v4
61
if: success() || failure()
62
with:
- name: test-results
63
+ name: ${{ steps.artifact_name.outputs.artifact_name }}
64
path: 'spec/junit-reports/**/*-junit.xml'
0 commit comments