CI: Set timezone to Europe/Berlin
Evaluation of the ical data uses the local time when formating the output string as the input data uses UTC.
This commit is contained in:
parent
5684e3d819
commit
f826bcf7fe
|
@ -1,3 +1,6 @@
|
||||||
|
variables:
|
||||||
|
TZ: Europe/Berlin
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- deploy
|
- deploy
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{{- if eq ._type "vevent"}}
|
{{- if eq ._type "vevent"}}
|
||||||
<tr>
|
<tr>
|
||||||
{{- $start := time .dtstart }}
|
{{- $start := time .dtstart }}
|
||||||
<td style="font-variant-numeric: tabular-nums;">{{ $start.Local | time.Format "Mon, 2006-01-02 15:04" }}</td>
|
<td style="font-variant-numeric: tabular-nums;">{{ $start.Local.Format "Mon, 2006-01-02 15:04" }}</td>
|
||||||
<td>{{ .summary }}</td>
|
<td>{{ .summary }}</td>
|
||||||
<td>{{ .location }}</td>
|
<td>{{ .location }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue