Skip to content

Commit

Permalink
capitalisation fix in CI script reference to text file
Browse files Browse the repository at this point in the history
  • Loading branch information
M3CHR0M4NC3R committed Nov 13, 2024
1 parent 8ead209 commit 5333c51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check_compilable_percentage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ jobs:
- name: Read latest run percentage from file
id: constant_saved_run_percentage
run: |
if [ -f "$(pwd)/CI_constant_saved_run_percentage" ]; then
constant_saved_run_percentage=$(cat "$(pwd)/CI_constant_saved_run_percentage" | tr -d '()%')
if [ -f "$(pwd)/CI_constant_saved_run_percentage.txt" ]; then
constant_saved_run_percentage=$(cat "$(pwd)/CI_constant_saved_run_percentage.txt" | tr -d '()%')
echo "Constant saved run accuracy: $constant_saved_run_percentage"
echo "::set-output name=constant_saved_run_percentage::$latest_run_accuracy"
else
echo "File CI_constant_saved_run_percentage does not exist"
echo "File CI_constant_saved_run_percentage.txt does not exist"
exit 1
fi
Expand Down
1 change: 0 additions & 1 deletion CI_Constant_saved_run_percentage.txt

This file was deleted.

0 comments on commit 5333c51

Please sign in to comment.