Skip to content

Commit

Permalink
Merge pull request #69 from scientist-softserv/if-file-then-mv
Browse files Browse the repository at this point in the history
if-file-then-mv
  • Loading branch information
aprilrieger authored Apr 24, 2024
2 parents 0444b51 + e190f92 commit 7962592
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,10 @@ jobs:
CI_NODE_TOTAL: ${{ matrix.ci_node_total }}
# Use the index from matrix as an environment variable
CI_NODE_INDEX: ${{ matrix.ci_node_index }}
run: >-
mv rspec.xml rspec-${CI_NODE_INDEX}.xml
run: |
if [ -f rspec.xml ]; then
mv rspec.xml rspec-${CI_NODE_INDEX}.xml
fi
- name: Archive spec reports
uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit 7962592

Please sign in to comment.