From 0a0cbcc023d515156435ddf0491ea71efe91bf8d Mon Sep 17 00:00:00 2001 From: semanticdata Date: Thu, 7 Mar 2024 13:12:39 -0600 Subject: [PATCH] workflow test --- .github/workflows/deploy-pnpm.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy-pnpm.yml b/.github/workflows/deploy-pnpm.yml index 808e6d641..191b2dbc3 100644 --- a/.github/workflows/deploy-pnpm.yml +++ b/.github/workflows/deploy-pnpm.yml @@ -16,28 +16,23 @@ concurrency: cancel-in-progress: false jobs: - install: + build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - name: Checkout + - name: Checkout + uses: actions/checkout@v4 with: fetch-depth: 0 # Fetch all history for git info - - uses: actions/setup-node@v4 - name: Setup Node + - name: Setup Node + uses: actions/setup-node@v4 with: node-version: 18 - - build: - needs: install - runs-on: ubuntu-latest - steps: - name: Install Dependencies run: npm i - name: Build Quartz Site run: npx quartz build - - uses: actions/upload-pages-artifact@v3 - name: Upload artifact + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 with: path: public