From b15f1a59a9533ba9fd1015f2f3784b6198e46f99 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Mon, 27 Nov 2023 17:38:47 +0000 Subject: [PATCH] Download till 600; warm up caches using last downloaded comic --- .github/workflows/cron.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index c451a2c..2e37076 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -49,7 +49,7 @@ jobs: run: cp result/www/index.html _old_index.html - name: Go run # run: go run . result/www -f 1 -t 30 - run: go run . result/www -f $(( 1 + $( cd result/www; (echo 1; for i in [0-9]*; do echo $i; done) | sort --general-numeric-sort | tail -n 1) )) -t 500 + run: go run . result/www -f $(( 1 + $( cd result/www; (echo 1; for i in [0-9]*; do echo $i; done) | sort --general-numeric-sort | tail -n 1) )) -t 600 # go run . output-dir -f from -t to - name: concat index.html run: ./concat_htmls.sh result/www/index.html _old_index.html > _new_index.html; mv _new_index.html result/www/index.html @@ -62,7 +62,7 @@ jobs: - name: create .nojekyll run: touch result/www/.nojekyll - name: create ipfs-add.sh - run: cp _ipfs-add.sh result/www/ipfs-add.sh; (cd result/www; find 3 -type f > ../../.github/files-to-cache.lst) + run: cp _ipfs-add.sh result/www/ipfs-add.sh; (cd result/www; find $(cd result/www; (echo 1; for i in [0-9]*; do echo $i; done) | sort --general-numeric-sort | tail -n 1) -type f > ../../.github/files-to-cache.lst) # - name: git push # run: | # git config --global user.name 'Suzanne Soy'