Skip to content

Commit

Permalink
More attempts to fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka committed Jun 5, 2024
1 parent 12136a8 commit 8855315
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Install Google Fonts
run: |
wget -O atkinson.zip https://fonts.google.com/download?family=Atkinson%20Hyperlegible
unzip -d atkinson/ atkinson.zip
mv atkinson /usr/share/fonts/
fc-cache -fv
- name: Checkout
uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion _config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import tailwindConfig from "./tailwind.config.ts";
await checkPrerequisities();

export const site = lume({
location: new URL("https://wuespace.github.io/vos/")
location: new URL("https://wuespace.github.io/vos/"),
});

site.use(jsx());
Expand Down
2 changes: 1 addition & 1 deletion lib/typst-delegis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const typstDelegis = () => (site: Site) => {
const urls: Record<string, Metadata> = {};
await Promise.allSettled(filteredPages.map(async (page) => {
const metadata = await readMetadata(site.src(page.sourcePath));
urls[page.data.url] = metadata;
urls[site.url(page.data.url)] = metadata;

allPages.push(Page.create({
url: page.data.url + "info.json",
Expand Down

0 comments on commit 8855315

Please sign in to comment.