Skip to content

Commit 581cbeb

Browse files
authored
Merge develop (#32)
2 parents 5d02b28 + 8fc9863 commit 581cbeb

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/build.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ name: Build and Deploy
22

33
on:
44
push:
5+
branches:
6+
- main
7+
- "**"
58
pull_request:
9+
branches:
10+
- main
611
workflow_dispatch:
712

813
concurrency:
@@ -14,6 +19,7 @@ permissions:
1419

1520
jobs:
1621
build:
22+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
1723
runs-on: ubuntu-latest
1824
steps:
1925
- uses: actions/checkout@v4
@@ -96,7 +102,7 @@ jobs:
96102
# preview: true
97103

98104
deploy:
99-
if: github.ref == 'refs/heads/main'
105+
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
100106
needs: build
101107
runs-on: ubuntu-latest
102108
permissions:

quartz.config.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const config: QuartzConfig = {
1414
analytics: {
1515
provider: "plausible",
1616
},
17-
locale: "en-US",
17+
locale: "en-GB",
1818
baseUrl: "exadev.github.io",
1919
ignorePatterns: ["private", "templates", ".obsidian"],
2020
defaultDateType: "modified",
@@ -82,8 +82,11 @@ const config: QuartzConfig = {
8282
Plugin.FolderPage(),
8383
Plugin.TagPage(),
8484
Plugin.ContentIndex({
85-
enableSiteMap: true,
8685
enableRSS: true,
86+
enableSiteMap: true,
87+
includeEmptyFiles: false,
88+
rssFullHtml: true,
89+
rssLimit: Infinity,
8790
}),
8891
Plugin.Assets(),
8992
Plugin.Static(),

0 commit comments

Comments
 (0)