From ef91e2b63a65f377347d5a9e998d52d5fb43cb26 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Mon, 27 Nov 2023 17:42:10 +0000 Subject: [PATCH] Remove excess logging, download till 1000 --- .github/workflows/cron.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 2e37076..4933d09 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -40,7 +40,8 @@ jobs: - name: Make output dir run: mkdir -p result/www - name: extract - run: tar -C result/www -xf ./old/github-pages/artifact.tar; find result + run: tar -C result/www -xf ./old/github-pages/artifact.tar + #; find result - name: Go install run: go install . - name: Previously downloaded until @@ -49,14 +50,14 @@ 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 600 + 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 1000 # 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 - name: Now downloaded until run: echo $(cd result/www; (echo 1; for i in [0-9]*; do echo $i; done) | sort --general-numeric-sort | tail -n 1) - - name: find - run: find result +# - name: find +# run: find result - name: create .ipfsignore run: touch result/www/.ipfsignore - name: create .nojekyll