Usar fechas de git en vez de los archivos
continuous-integration/woodpecker the build was successful Details

This commit is contained in:
Cat /dev/Nulo 2021-10-08 22:57:06 -03:00
parent 2065ea8e15
commit c078106ea2
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ pipeline:
build:
image: docker.io/alpine:3.14
commands:
- apk add cmark
- apk add cmark git
# Para generar las fechas bien
- ln -sf /etc/zoneinfo/America/Argentina/Buenos_Aires /etc/localtime
- ./build.sh

View File

@ -12,7 +12,7 @@ template () {
if test -n "$2"; then
echo -n "<header>"
echo -n "<h1>$1</h1>"
echo -n "<p><small>Último cambio: <time datetime='$(stat -c %y "$2")'>$(date -d "$(stat -c %y "$2" | cut -f 1 -d .)" '+%Y-%m-%d %H:%M')</time></small></p>"
echo -n "<p><small>Último cambio: <time datetime='$(git log -1 --format=%ai "$2")'>$(date -d "@$(git log -1 --format=%at "$2")" '+%Y-%m-%d %H:%M')</time></small></p>"
echo -n "</header>"
fi
}