Download till 600; warm up caches using last downloaded comic

This commit is contained in:
Suzanne Soy 2023-11-27 17:38:47 +00:00
parent 20ef57f845
commit b15f1a59a9

View File

@ -49,7 +49,7 @@ jobs:
run: cp result/www/index.html _old_index.html run: cp result/www/index.html _old_index.html
- name: Go run - name: Go run
# run: go run . result/www -f 1 -t 30 # 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 # go run . output-dir -f from -t to
- name: concat index.html - 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 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 - name: create .nojekyll
run: touch result/www/.nojekyll run: touch result/www/.nojekyll
- name: create ipfs-add.sh - 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 # - name: git push
# run: | # run: |
# git config --global user.name 'Suzanne Soy' # git config --global user.name 'Suzanne Soy'