minor tweaks
Some checks failed
Deploy Quartz site to Pages / build (push) Failing after 5s

This commit is contained in:
Eau
2026-04-11 02:27:19 -05:00
parent 59a23af308
commit a1f88b8bb4

View File

@@ -20,17 +20,6 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 24
- uses: actions/checkout@v6
id: clone quartz repo
with:
# Repository name with owner. For example, actions/checkout
# Default: ${{ github.repository }}
repository: 'jackyzha0/quartz.git'
github-server-url: 'https://github.com/'
fetch-depth: 1
persist-credentials: false
token: ${{secrets.GH_PAT}}
ref: v4
- uses: actions/checkout@v6
id: get garden content
with:
@@ -52,8 +41,22 @@ jobs:
working-directory: content
- run: git add version.txt && git commit -m "${{ env.VERSION_FRAGMENT }} version increment [skip actions]" && git tag ${{ env.CURRENT_VERSION }}
working-directory: content
- uses: actions/checkout@v6
id: clone quartz repo
with:
# Repository name with owner. For example, actions/checkout
# Default: ${{ github.repository }}
repository: 'jackyzha0/quartz.git'
github-server-url: 'https://github.com/'
fetch-depth: 1
persist-credentials: false
token: ${{secrets.GH_PAT}}
ref: v4
path: quartz
- name: Overlay quartz configs
run: cp -fR content/.quartz/** .
- name: Copy the content
run: cp -fR content/** quartz/content
- name: Install Dependencies
run: npm ci
working-directory: quartz