From 872ba280708d30939423373fc6b7f992d86effcb Mon Sep 17 00:00:00 2001 From: semanticdata Date: Thu, 7 Mar 2024 13:38:12 -0600 Subject: [PATCH] Update deploy-test-only.yml --- .github/workflows/deploy-test-only.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy-test-only.yml b/.github/workflows/deploy-test-only.yml index 61674fcab..c24140b95 100644 --- a/.github/workflows/deploy-test-only.yml +++ b/.github/workflows/deploy-test-only.yml @@ -20,7 +20,7 @@ defaults: shell: bash jobs: - setup: + build: runs-on: ubuntu-latest steps: - name: Checkout @@ -33,11 +33,6 @@ jobs: node-version: 18 - name: Install Dependencies run: npm i - - build: - needs: setup - runs-on: ubuntu-latest - steps: - name: Build Quartz Site run: npm run build - name: Upload artifact @@ -46,7 +41,7 @@ jobs: path: public deploy: - needs: [setup, build] + needs: build environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }}