Skip to content

Commit

Permalink
Fix issues in Benchmark.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rkierulf committed Jun 28, 2024
1 parent 04ac61f commit 6d8510d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:

- name: Locate Benchmarks Artifact
id: locate
if: ${{ steps.download.download_state == 'success'}}
run: echo "path=$(find artifacts -type f -name combinedbenchmarks.json)" >> $GITHUB_OUTPUT
if: ${{ steps.download.outputs.download_state == 'success'}}
run: echo "path=$(find /github/workspace/artifacts -type f -name combinedbenchmarks.json)" >> $GITHUB_OUTPUT

- name: Upload Benchmark Results
if: ${{ steps.download.download_state == 'success' && steps.locate.outputs.path != '' }}
if: ${{ steps.download.outputs.download_state == 'success' && steps.locate.outputs.path != '' }}
uses: benchmark-action/github-action-benchmark@v1
with:
name: KomaMRI Benchmarks
Expand Down

0 comments on commit 6d8510d

Please sign in to comment.