From 4d1dca06d28bfc2c9675278de01f4869dd481c65 Mon Sep 17 00:00:00 2001 From: Jonathan Kenyon Date: Wed, 31 Jan 2024 11:38:31 +0200 Subject: [PATCH] More fiddling. --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7f586b54..2ffb7b49 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -51,12 +51,13 @@ jobs: - name: Retouch run: | cd $GITHUB_WORKSPACE - ls + ls -lrt git ls-tree -r --name-only HEAD | while read filename; do unixtime=$(git log -1 --format="%at" -- "${filename}") touchtime=$(date -d @$unixtime +'%Y%m%d%H%M.%S') touch -t ${touchtime} "${filename}" done + ls -lrt # - name: Retouch # run: find $GITHUB_WORKSPACE -type f -name "*.py" -exec touch -t 01010000 {} +