Skip to content

Commit

Permalink
Update artifact and log file names
Browse files Browse the repository at this point in the history
  • Loading branch information
yoland68 committed Jul 19, 2024
1 parent b832d47 commit 8a9bad6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ runs:
uses: actions/upload-artifact@v4
if: ${{ inputs.os != 'windows' && ( success() || failure() ) }}
with:
name: output-files-${{ github.job }}-${{ inputs.os }}-${{inputs.workflow_name}}-${{ github.run_id }}
name: output-files-${{ github.job }}-${{ inputs.os }}-${{inputs.workflow_name}}-torch-${{inputs.torch_version}}-${{inputs.cuda_version}}-${{ github.run_id }}
path: ${{ github.workspace }}/output/**

- name: '[Unix] Upload log file to GCS'
Expand All @@ -250,7 +250,7 @@ runs:
if: ${{ inputs.os != 'windows' && ( success() || failure() ) }}
uses: actions/upload-artifact@v4
with:
name: app-logs-${{ github.job }}-${{ inputs.os }}-${{inputs.workflow_name}}-${{ github.run_id }}
name: app-logs-${{ github.job }}-${{ inputs.os }}-${{inputs.workflow_name}}-torch-${{inputs.torch_version}}-${{inputs.cuda_version}}-${{ github.run_id }}
path: ${{ github.workspace }}/application.log

- name: '[Unix] Cleanup output files only'
Expand Down Expand Up @@ -438,7 +438,7 @@ runs:
uses: actions/upload-artifact@v4
if: ${{ inputs.os == 'windows' && ( success() || failure() ) }}
with:
name: output-files-${{ github.job }}-${{ inputs.os }}-${{inputs.workflow_name}}-${{ github.run_id }}
name: output-files-${{ github.job }}-${{ inputs.os }}-${{inputs.workflow_name}}-torch-${{inputs.torch_version}}-${{inputs.cuda_version}}-${{ github.run_id }}
path: ${{ github.workspace }}/output/**

- name: '[Win] Upload log file to GCS'
Expand Down

0 comments on commit 8a9bad6

Please sign in to comment.