You've already forked system-aspect
Update .github/workflows/deploy.yml
All checks were successful
Build Quartz site / build (push) Successful in 1m32s
All checks were successful
Build Quartz site / build (push) Successful in 1m32s
This commit is contained in:
26
.github/workflows/deploy.yml
vendored
26
.github/workflows/deploy.yml
vendored
@@ -14,12 +14,6 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
path: 'content'
|
|
||||||
fetch-depth: 0 # Fetch all history for git info
|
|
||||||
|
|
||||||
- name: "Fetching Quartz"
|
- name: "Fetching Quartz"
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
@@ -28,5 +22,21 @@ jobs:
|
|||||||
github-server-url: 'https://github.com'
|
github-server-url: 'https://github.com'
|
||||||
token: ${{ secrets.GH_PAT }}
|
token: ${{ secrets.GH_PAT }}
|
||||||
|
|
||||||
- name: "Building Quartz content"
|
- name: "Checkout"
|
||||||
uses: ./content/.github/actions/deploy-quartz/
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
path: 'quartz/content'
|
||||||
|
fetch-depth: 0 # Fetch all history for git info
|
||||||
|
|
||||||
|
- name: "Install Node"
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18.14
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: npm ci
|
||||||
|
working-directory: ./quartz
|
||||||
|
|
||||||
|
- name: Build Quartz
|
||||||
|
run: npx quartz build
|
||||||
|
working-directory: ./quartz
|
||||||
Reference in New Issue
Block a user