From 8a9bad628e68a6a21881d75f09b947d919060533 Mon Sep 17 00:00:00 2001 From: Yoland Y <4950057+yoland68@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:53:55 -0700 Subject: [PATCH] Update artifact and log file names --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 1af1357..b13f6d4 100644 --- a/action.yml +++ b/action.yml @@ -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' @@ -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' @@ -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'