Skip to content

Commit

Permalink
Upgrade to Quartz 4.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: Abhi Agarwal <abhiaagarwal01@gmail.com>
  • Loading branch information
abhiaagarwal committed Jan 7, 2025
1 parent 093c3e1 commit 5aea4f8
Show file tree
Hide file tree
Showing 116 changed files with 7,503 additions and 2,985 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Publish Quartz to GitHub Pages

on:
push:
branches:
- main

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -32,7 +32,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
path: public

deploy:
needs: build
environment:
Expand All @@ -42,4 +42,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.9.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim as builder
FROM node:20-slim AS builder
WORKDIR /usr/src/app
COPY package.json .
COPY package-lock.json* .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Abhi's Notes

A collection of things I want to remember
A collection of things I want to remember
4 changes: 4 additions & 0 deletions globals.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ export declare global {
type: K,
listener: (this: Document, ev: CustomEventMap[K]) => void,
): void
removeEventListener<K extends keyof CustomEventMap>(
type: K,
listener: (this: Document, ev: CustomEventMap[K]) => void,
): void
dispatchEvent<K extends keyof CustomEventMap>(ev: CustomEventMap[K] | UIEvent): void
}
interface Window {
Expand Down
Loading

0 comments on commit 5aea4f8

Please sign in to comment.