Quartz sync: Jun 2, 2024, 7:45 PM

This commit is contained in:
Rami Maalouf 2024-06-02 19:45:24 -04:00
parent f660f4cd81
commit 695a10453a
No known key found for this signature in database
5 changed files with 16 additions and 4 deletions

View File

@ -21,6 +21,17 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
fetch-depth: 0 # Fetch all history for git info fetch-depth: 0 # Fetch all history for git info
submodules: recursive # Fetch submodules
token: ${{ secrets.GH_PAT }}
- name: Update Submodule
run: |
git config --global url."https://${{ secrets.GH_PAT }}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
git submodule update --remote --merge
git add .
git commit -m "Updated submodule content"
git push origin main
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 18.14 node-version: 18.14

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "content"]
path = content
url = https://github.com/psycho-baller/my-universe-content

1
content Submodule

@ -0,0 +1 @@
Subproject commit a037658c3fb089c122c80dfa6b44e3c7e81c2c81

View File

@ -1,3 +0,0 @@
# Welcome!
Meow! 🐱

View File

@ -15,7 +15,7 @@ const config: QuartzConfig = {
provider: "plausible", provider: "plausible",
}, },
locale: "en-US", locale: "en-US",
baseUrl: "https://psycho-baller.github.io", baseUrl: "psycho-baller.github.io",
ignorePatterns: [ ignorePatterns: [
"private", "private",
"templates", "templates",