From a131373e5a04c0d42b4cb73fb82996d883386f10 Mon Sep 17 00:00:00 2001 From: Chooooooo Date: Thu, 22 Feb 2024 10:48:40 +0900 Subject: [PATCH] =?UTF-8?q?CD:=20CD=20=EC=84=A4=EC=A0=95=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - build/ -> dist/로 빌드 파일 업로드 수정 --- .github/workflows/client-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/client-deploy.yml b/.github/workflows/client-deploy.yml index 0597e57..e45b442 100644 --- a/.github/workflows/client-deploy.yml +++ b/.github/workflows/client-deploy.yml @@ -29,7 +29,7 @@ jobs: npm run build - name: 빌드한 파일 S3에 업로드 - run: aws s3 sync build/ s3://${{ secrets.AWS_S3_BUCKET }} --acl public-read + run: aws s3 sync dist/ s3://${{ secrets.AWS_S3_BUCKET }} --acl public-read env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}