From 6eba2bc66dabcb8d371bde8e678b8770722c4819 Mon Sep 17 00:00:00 2001 From: Joshua Date: Wed, 20 Dec 2023 14:48:47 -0600 Subject: [PATCH] fix directory --- .github/workflows/ci.yml | 3 --- .github/workflows/deploy.yml | 8 +------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c44ed4d45..91c98375a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,9 +7,6 @@ on: jobs: CI: runs-on: ubuntu-22.04 - defaults: - run: - working-directory: website steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 867e340e1..68dfba2be 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,9 +5,6 @@ on: push: branches: - prerelease - paths: - - ".github/workflows/deploy.yml" - - "website/**" permissions: contents: read @@ -24,9 +21,6 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-22.04 - defaults: - run: - working-directory: website steps: - uses: actions/checkout@v3 @@ -57,7 +51,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - path: "./website/build" + path: "./build" - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2