diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index dae460b..84d5e94 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,12 +14,6 @@ jobs: build: runs-on: ubuntu-22.04 steps: - - name: "Checkout" - uses: actions/checkout@v3 - with: - path: 'content' - fetch-depth: 0 # Fetch all history for git info - - name: "Fetching Quartz" uses: actions/checkout@v3 with: @@ -28,5 +22,21 @@ jobs: github-server-url: 'https://github.com' token: ${{ secrets.GH_PAT }} - - name: "Building Quartz content" - uses: ./content/.github/actions/deploy-quartz/ \ No newline at end of file + - name: "Checkout" + 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 \ No newline at end of file