Skip to content

Commit

Permalink
debug github action
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanophile committed Apr 5, 2024
1 parent c1a42ee commit 127c3db
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pelican.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
pages: "write"
id-token: "write"
with:
settings: "pelicanconf.py"
settings: "publishconf.py"
3 changes: 2 additions & 1 deletion content/pages/About.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Title: About Me
Author: Matt Gibson
Summary: About me page
save_as: index.html
Save_as: index.html


I am a software and machine learning developer in [Sydney](http://en.wikipedia.org/wiki/Sydney), NSW, Australia. I like [computing](https://en.wikipedia.org/wiki/MOS_Technology_6502), [data](https://search.r-project.org/CRAN/refmans/vcd/html/HorseKicks.html), [machine learning](https://pytorch.org/) and [cooking](https://web.archive.org/web/20160210065535/http://www.seriouseats.com/the-food-lab/?ref=nav_main). I'm delighted by the scientific enterprise which allows us ["to see a World in a Grain of Sand"](https://www.poetryfoundation.org/poems/43650/auguries-of-innocence).

Expand Down
25 changes: 14 additions & 11 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,30 @@
AUTHOR = "Matt Gibson"
SITENAME = "Matt Gibson"
SITESUBTITLE = "Artisanal Data and Software Gibbon"

# configure automatically if using githubpages + custom domain
# SITEURL = "https://matthew-gibson.com"
SITEURL = ""
DEBUG = True
RELATIVE_URLS = True

TIMEZONE = "Australia/Sydney"


# ▼▼▼▼▼▼▼▼▼▼ OVERWRITTEN in publishconf.py ▼▼▼▼
RELATIVE_URLS = True
MENUITEMS = [
("About", "/"),
# ("Projects", "/pages/projects.html"),
("CV", "/pages/CV.html"),
("Blog", "/category/blog.html"),
# ("Contact", "/pages/contact.html"),
]
# MENUITEMS = [
# ("About", "/pages/About.html"),
# # ("Projects", "/pages/projects.html"),
# ("CV", "/pages/CV.html"),
# ("Blog", "/category/blog.html"),
# # ("Contact", "/pages/contact.html"),
# ]
# ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲

LOAD_CONTENT_CACHE = False


DISPLAY_PAGES_ON_MENU = False
DISPLAY_CATEGORIES_ON_MENU = False
DISPLAY_PAGES_ON_MENU = True
DISPLAY_CATEGORIES_ON_MENU = True

# where the source content is located
PATH = "content"
Expand Down
6 changes: 2 additions & 4 deletions publishconf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals

# This file is only used if you use `make publish` or
Expand All @@ -15,6 +13,6 @@
# !!!!!


# SITEURL = "https://matthew-gibson.com"
# RELATIVE_URLS = True
SITEURL = "https://matthew-gibson.com"
RELATIVE_URLS = False
# DISPLAY_PAGES_ON_MENU = True

0 comments on commit 127c3db

Please sign in to comment.