Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
reakaleek committed Jun 27, 2023
1 parent a855b60 commit 3c3231d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ on:
env:
PNG_REPORT_FILE: out.png
BENCHMARK_RESULT: benchmark-result.txt
WORKING_DIRECTORY: testing/benchmark

jobs:
benchmarks:
runs-on: ubuntu-latest
defaults:
run:
working-directory: testing/benchmark
working-directory: ${{ env.WORKING_DIRECTORY }}
env:
SSH_KEY: ./id_rsa_terraform
TF_VAR_private_key: ./id_rsa_terraform
Expand Down Expand Up @@ -76,13 +77,13 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: kibana-png-report
path: ${{ env.PNG_REPORT_FILE }}
path: ${{ env.WORKING_DIRECTORY }}/${{ env.PNG_REPORT_FILE }}
if-no-files-found: error
- uses: actions/upload-artifact@v3
if: always()
with:
name: benchmark-result
path: ${{ env.BENCHMARK_RESULT }}
path: ${{ env.WORKING_DIRECTORY }}/${{ env.BENCHMARK_RESULT }}
if-no-files-found: error
- name: Tear down benchmark environment
if: always()
Expand Down

0 comments on commit 3c3231d

Please sign in to comment.