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 }}