Skip to content

Commit acf7e72

Browse files
committed
Quartz sync: Oct 15, 2024, 10:45 PM
1 parent 2423f40 commit acf7e72

File tree

8 files changed

+48
-224
lines changed

8 files changed

+48
-224
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/ci.yaml

Lines changed: 0 additions & 72 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Deploy Quartz site to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- v4
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-22.04
20+
steps:
21+
- uses: actions/checkout@v4
22+
with:
23+
fetch-depth: 0 # Fetch all history for git info
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: 22
27+
- name: Install Dependencies
28+
run: npm ci
29+
- name: Build Quartz
30+
run: npx quartz build
31+
- name: Upload artifact
32+
uses: actions/upload-pages-artifact@v3
33+
with:
34+
path: public
35+
36+
deploy:
37+
needs: build
38+
environment:
39+
name: github-pages
40+
url: ${{ steps.deployment.outputs.page_url }}
41+
runs-on: ubuntu-latest
42+
steps:
43+
- name: Deploy to GitHub Pages
44+
id: deployment
45+
uses: actions/deploy-pages@v4

.github/workflows/docker-build-push.yaml

Lines changed: 0 additions & 88 deletions
This file was deleted.

quartz.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as Plugin from "./quartz/plugins"
88
*/
99
const config: QuartzConfig = {
1010
configuration: {
11-
pageTitle: "🪴 Quartz 4.0",
11+
pageTitle: "alanmmolina",
1212
pageTitleSuffix: "",
1313
enableSPA: true,
1414
enablePopovers: true,
@@ -23,8 +23,8 @@ const config: QuartzConfig = {
2323
fontOrigin: "googleFonts",
2424
cdnCaching: true,
2525
typography: {
26-
header: "Schibsted Grotesk",
27-
body: "Source Sans Pro",
26+
header: "Geo",
27+
body: "Roboto",
2828
code: "IBM Plex Mono",
2929
},
3030
colors: {

quartz.layout.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export const sharedPageComponents: SharedLayout = {
99
footer: Component.Footer({
1010
links: {
1111
GitHub: "https://github.com/jackyzha0/quartz",
12-
"Discord Community": "https://discord.gg/cRFFHYye7t",
1312
},
1413
}),
1514
}

0 commit comments

Comments
 (0)