Skip to content

Commit

Permalink
Remove hard coded failure
Browse files Browse the repository at this point in the history
This should now work as expected and complete successfully
  • Loading branch information
benlower committed Apr 26, 2024
1 parent f327fc8 commit 86e7695
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
# Delete the file
rm "$FILE"
echo "File $FILE has been deleted."
exit 1
elif [ -n "$OUTPUT" ]; then
echo "$OUTPUT" > ./website/public/data/latest.json
Expand Down
3 changes: 1 addition & 2 deletions utils/GenerateLatestData.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,5 @@ async function fetchAndMergeFiles(date) {
}

// Example usage with the current date
// const currentDate = new Date().toISOString().split('T')[0]; // Format: YYYY-MM-DD
const currentDate = '2024-03-01';
const currentDate = new Date().toISOString().split('T')[0]; // Format: YYYY-MM-DD
fetchAndMergeFiles(currentDate);

0 comments on commit 86e7695

Please sign in to comment.