diff --git a/.github/workflows/vtune-docker.yml b/.github/workflows/vtune-docker.yml index 8842ab1..1f5240d 100644 --- a/.github/workflows/vtune-docker.yml +++ b/.github/workflows/vtune-docker.yml @@ -30,23 +30,24 @@ jobs: # Step 4: Copy VTune Results from container - name: Copy VTune Results run: | - mkdir -p /home/artifacts - docker cp profiling-container:/opt/hotspots_summary.html /home/artifacts/hotspots_summary.html - docker cp profiling-container:/opt/hotspots_results.tar /home/artifacts/hotspots_results.tar + cd $HOME + mkdir artifacts + docker cp profiling-container:/opt/hotspots_summary.html ./artifacts/hotspots_summary.html + docker cp profiling-container:/opt/hotspots_results.tar ./artifacts/hotspots_results.tar # Step 5 Upload VTune results artifacts - name: Upload VTune results summary uses: actions/upload-artifact@v4 with: name: vtune-results-summary - path: /home/artifacts/hotspots_summary.html + path: ./artifacts/hotspots_summary.html if-no-files-found: error - name: Upload full VTune results uses: actions/upload-artifact@v4 with: name: vtune-results-full - path: /home/artifacts/hotspots_results.tar + path: ./artifacts/hotspots_results.tar if-no-files-found: error