From a82a1e1d29a5a0bddf5419f0cb858653aa0eb311 Mon Sep 17 00:00:00 2001 From: Jiyoon Kim Date: Tue, 16 Jan 2024 20:57:42 +0900 Subject: [PATCH] =?UTF-8?q?#7=20fix:=20working-directory=20=EC=9D=BC?= =?UTF-8?q?=EB=B6=80=20=EC=A7=80=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index aa4946e4..688674a5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,7 +9,6 @@ on: defaults: run: shell: bash - working-directory: ./backend env: AWS_S3_BUCKET: howabouttrip-backend-bucket @@ -29,10 +28,12 @@ jobs: distribution: 'corretto' - name: Grant execute permission for gradlew + working-directory: ./backend run: chmod +x ./gradlew shell: bash - name: Build Project and Test + working-directory: ./backend run: ./gradlew build test - name: Configure AWS credential