Skip to content

Commit 22edc2b

Browse files
committed
Error in script. Dates should not be quoted. Github actions choked on it.
1 parent d701341 commit 22edc2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

create_post.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $date = $currentDate.ToString("yyyy-MM-dd")
2222
$yamlContent = @"
2323
---
2424
title: "$title"
25-
date: "$date"
25+
date: $date
2626
authors:
2727
-
2828
---

docs/posts/2025/03/11/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Unconference"
3-
date: "2025-03-11"
3+
date: 2025-03-11
44
authors:
55
- norm
66
---

0 commit comments

Comments
 (0)