Skip to content

Commit

Permalink
improve github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Oct 5, 2024
1 parent d304266 commit 6401b09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,22 +110,22 @@ jobs:
if: failure() || cancelled()
name: Upload failed logs
with:
name: failed_logs_${{ matrix.test_profile }}_${{ matrix.exec_profile }}_${{ github.run_id }}_${{ github.job }}
name: failed_logs_${{ matrix.test_profile }}_${{ matrix.exec_profile }}_${{ matrix.NXF_VER }}
path: failed_logs
overwrite: true

- uses: actions/upload-artifact@v4
if: always()
name: Upload results
with:
name: ${{ matrix.test_profile }}_${{ matrix.exec_profile }}_${{ github.run_id }}_${{ github.job }}_results
name: ${{ matrix.test_profile }}_${{ matrix.exec_profile }}_${{ matrix.NXF_VER }}_results
path: ${{ matrix.test_profile }}_${{ matrix.exec_profile }}_results
overwrite: true

- uses: actions/upload-artifact@v4
if: always()
name: Upload log
with:
name: nextflow_${{ matrix.test_profile }}_${{ matrix.exec_profile }}_${{ github.run_id }}_${{ github.job }}.log
name: nextflow_${{ matrix.test_profile }}_${{ matrix.exec_profile }}_${{ matrix.NXF_VER }}.log
path: .nextflow.log
overwrite: true

0 comments on commit 6401b09

Please sign in to comment.