We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89a0ca2 commit 7fa86a6Copy full SHA for 7fa86a6
.github/workflows/build.yaml
@@ -39,6 +39,13 @@ jobs:
39
pip install --upgrade pip
40
pip install Pygments pandoc-include
41
cd /home/runner/work/csci-1301.github.io/csci-1301.github.io/
42
+ # Trying to restore correct timestamp after cloning
43
+ # https://stackoverflow.com/a/55609950/2657549
44
+ git ls-tree -r --name-only HEAD | while read filename; do
45
+ unixtime=$(git log -1 --format="%at" -- "${filename}")
46
+ touchtime=$(date -d @$unixtime +'%Y%m%d%H%M.%S')
47
+ touch -t ${touchtime} "${filename}"
48
+ done
49
wget https://github.com/csci-1301/csci-1301.github.io/releases/download/latest/release.zip && unzip -q release.zip
50
- name: Build 🏗️
51
run: make all
0 commit comments