Skip to content

Commit

Permalink
Regenerate data more often
Browse files Browse the repository at this point in the history
Now we're regenerating everything from scratch on each run, including BSF,
there's no reason to not regenerate everything more often. The only downside
here is that we will be changing the results for the yesterday/today on multiple
occasions, rather than the figures being mostly constant once they're added.
  • Loading branch information
gsnedders committed Apr 9, 2022
1 parent e97a30d commit 1f3afb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update_gh_pages.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Update gh-pages
on:
# Trigger on UTC noon daily, or manually.
# Trigger on every three hours, or manually.
schedule:
- cron: '0 12 * * *'
- cron: '20 */3 * * *'
workflow_dispatch:
jobs:
update-gh-pages:
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd results-analysis-cache.git/
git fetch --all --tags
cd ../

TO_DATE=$(date -d "yesterday 13:00" '+%Y-%m-%d')
TO_DATE=$(date -d "tomorrow 13:00" '+%Y-%m-%d')

update_bsf_csv() {
local OUTPUT="${1}"
Expand Down

0 comments on commit 1f3afb6

Please sign in to comment.