From cc12647d18b7505135e62bdb3f961e9989db807a Mon Sep 17 00:00:00 2001
From: Rez <exavolt@gmail.com>
Date: Wed, 22 Nov 2023 14:11:58 +0700
Subject: [PATCH] Update deploy.yml

---
 .github/workflows/deploy.yml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 0b85afd..be0ab3a 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -30,8 +30,10 @@ jobs:
         run: yarn install --frozen-lockfile
       - name: Build website
         run: yarn build
-      - name: Inspect current dir
-        run: ls -al .
+      - name: Path
+        run: pwd
+      - name: Workspace dir
+        run: echo ${GITHUB_WORKSPACE}
       - name: Inspect project dir
         run: ls -al ./build
 
@@ -42,7 +44,7 @@ jobs:
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
           # Build output to publish to the `gh-pages` branch:
-          publish_dir: ./build
+          publish_dir: ./pass3-identity/build
           # The following lines assign commit authorship to the official
           # GH-Actions bot for deploys to `gh-pages` branch:
           # https://github.com/actions/checkout/issues/13#issuecomment-724415212