From 370bf5bde9a6fd4f0fcefc1d1b27154906e05f3b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:05:59 +0900
Subject: [PATCH 01/15] =?UTF-8?q?Chore:=20=EB=B0=B0=ED=8F=AC=ED=99=98?=
=?UTF-8?q?=EA=B2=BD=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.tsx | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/App.tsx b/src/App.tsx
index e9f490b..dbac9a1 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -9,7 +9,6 @@ function App() {
-
>
);
From d346f04cd47f7c833cf87e7cb411b5817059e5f1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:10:35 +0900
Subject: [PATCH 02/15] =?UTF-8?q?Delete:=20=EA=B9=83=ED=97=99=EC=95=A1?=
=?UTF-8?q?=EC=85=98=20=EC=82=AD=EC=A0=9C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/deploy-develop.yml | 26 --------------------------
.github/workflows/deploy-main.yml | 26 --------------------------
2 files changed, 52 deletions(-)
delete mode 100644 .github/workflows/deploy-develop.yml
delete mode 100644 .github/workflows/deploy-main.yml
diff --git a/.github/workflows/deploy-develop.yml b/.github/workflows/deploy-develop.yml
deleted file mode 100644
index 5549af8..0000000
--- a/.github/workflows/deploy-develop.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Deploy to Staging
-
-on:
- push:
- branches:
- - develop
-
-jobs:
- deploy:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout Repository
- uses: actions/checkout@v3
-
- - name: Install Dependencies
- run: |
- npm ci
- npm run build
-
- - name: Deploy to Amplify (Staging)
- env:
- AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- run: |
- npx amplify-cli publish --yes --branch develop
diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml
deleted file mode 100644
index a8453cd..0000000
--- a/.github/workflows/deploy-main.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Deploy to Production
-
-on:
- push:
- branches:
- - main
-
-jobs:
- deploy:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout Repository
- uses: actions/checkout@v3
-
- - name: Install Dependencies
- run: |
- npm ci
- npm run build
-
- - name: Deploy to Amplify (Production)
- env:
- AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- run: |
- npx amplify-cli publish --yes --branch main
From dae51dc8444c836d97b592a7f148913ef2a3f76e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:14:31 +0900
Subject: [PATCH 03/15] =?UTF-8?q?Fix:=20vite.config.ts=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
---
vite.config.ts | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/vite.config.ts b/vite.config.ts
index 4632d59..2cdc337 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,12 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
-export default defineConfig(({ mode }) => ({
- plugins: [react()],
- define: {
- "process.env": process.env,
- },
- build: {
- outDir: mode === "production" ? "build" : "staging",
- },
-}));
+// https://vite.dev/config/
+export default defineConfig({
+ plugins: [
+ react({
+ jsxImportSource: "react", // React 자동 import 비활성화
+ }),
+ ],
+});
From f9df8baccc4b009ce0c8ba71cad1e0252ce9a433 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:43:47 +0900
Subject: [PATCH 04/15] =?UTF-8?q?Chore:=20dev=20preview=20githubAction=20?=
=?UTF-8?q?=EC=B6=94=EA=B0=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/delete-preview.yml | 25 +++++++++++++++++++
.github/workflows/preview-deploy.yml | 36 ++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
create mode 100644 .github/workflows/delete-preview.yml
create mode 100644 .github/workflows/preview-deploy.yml
diff --git a/.github/workflows/delete-preview.yml b/.github/workflows/delete-preview.yml
new file mode 100644
index 0000000..5586146
--- /dev/null
+++ b/.github/workflows/delete-preview.yml
@@ -0,0 +1,25 @@
+name: Delete Preview on PR Close
+
+on:
+ pull_request:
+ types:
+ - closed # PR이 병합되거나 닫혔을 때 실행
+
+jobs:
+ delete-preview:
+ runs-on: ubuntu-latest
+
+ steps:
+ # 1. AWS CLI 설정
+ - name: Configure AWS Credentials
+ uses: aws-actions/configure-aws-credentials@v2
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: ap-northeast-2 # 원하는 AWS 리전
+
+ # 2. S3에서 PR 관련 파일 삭제
+ - name: Delete Preview Files from S3
+ run: |
+ PR_NUMBER=${{ github.event.pull_request.number }}
+ aws s3 rm s3://your-preview-bucket/pr-${PR_NUMBER} --recursive
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
new file mode 100644
index 0000000..6ad9513
--- /dev/null
+++ b/.github/workflows/preview-deploy.yml
@@ -0,0 +1,36 @@
+name: Deploy Preview for PRs
+
+on:
+ pull_request:
+ branches:
+ - main
+ - develop
+
+jobs:
+ deploy-preview:
+ runs-on: ubuntu-latest
+
+ steps:
+ # 1. 코드 체크아웃
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ # 2. 의존성 설치
+ - name: Install dependencies
+ run: npm install
+
+ # 3. 빌드 실행
+ - name: Build application
+ run: npm run build
+
+ # 4. S3에 미리보기 배포
+ - name: Deploy to S3
+ run: |
+ aws s3 sync ./build s3://your-preview-bucket/pr-${{ github.event.number }} --delete
+
+ # 5. PR에 미리보기 URL 등록
+ - name: Add Preview URL to PR
+ uses: thollander/actions-comment-pull-request@v1
+ with:
+ message: "Preview available at: https://your-preview-bucket.s3.amazonaws.com/pr-${{ github.event.number }}/"
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
From 030138862b66a5e7dc50caf8d8961592ca960f29 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:46:46 +0900
Subject: [PATCH 05/15] =?UTF-8?q?Chore:=20dev=20preview=20githubAction=20?=
=?UTF-8?q?=EC=B6=94=EA=B0=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index 6ad9513..6e26fc9 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -23,12 +23,16 @@ jobs:
- name: Build application
run: npm run build
- # 4. S3에 미리보기 배포
+ # 4. 빌드 디렉터리 확인
+ - name: Check build directory
+ run: ls -al ./dist
+
+ # 5. S3에 미리보기 배포
- name: Deploy to S3
run: |
- aws s3 sync ./build s3://your-preview-bucket/pr-${{ github.event.number }} --delete
+ aws s3 sync ./dist s3://your-preview-bucket/pr-${{ github.event.number }} --delete
- # 5. PR에 미리보기 URL 등록
+ # 6. PR에 미리보기 URL 등록
- name: Add Preview URL to PR
uses: thollander/actions-comment-pull-request@v1
with:
From b4640adc5715b23879327de08afb27e870dd0738 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:49:48 +0900
Subject: [PATCH 06/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/App.tsx b/src/App.tsx
index dbac9a1..e9f490b 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -9,6 +9,7 @@ function App() {
+
>
);
From c2703161af96e61e20f7c7a139b4af7b241f9f63 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:51:52 +0900
Subject: [PATCH 07/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index 6e26fc9..4325a37 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -15,18 +15,22 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- # 2. 의존성 설치
+ # 2. AWS 인증 정보 설정
+ - name: Configure AWS credentials
+ uses: aws-actions/configure-aws-credentials@v2
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: ${{ secrets.AWS_REGION }}
+
+ # 3. 의존성 설치
- name: Install dependencies
run: npm install
- # 3. 빌드 실행
+ # 4. 빌드 실행
- name: Build application
run: npm run build
- # 4. 빌드 디렉터리 확인
- - name: Check build directory
- run: ls -al ./dist
-
# 5. S3에 미리보기 배포
- name: Deploy to S3
run: |
From 940c01fce94f5ab58ced0fbae3ca6fdd2a62ae51 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:56:05 +0900
Subject: [PATCH 08/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index 4325a37..de6d1b4 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -21,7 +21,7 @@ jobs:
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- aws-region: ${{ secrets.AWS_REGION }}
+ aws-region: ap-northeast-2
# 3. 의존성 설치
- name: Install dependencies
From acda7c31f57da5382969ed652a82ab7b3530baa0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 17:56:55 +0900
Subject: [PATCH 09/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index de6d1b4..50d75e7 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -25,11 +25,11 @@ jobs:
# 3. 의존성 설치
- name: Install dependencies
- run: npm install
+ run: yarn install
# 4. 빌드 실행
- name: Build application
- run: npm run build
+ run: yarn build
# 5. S3에 미리보기 배포
- name: Deploy to S3
From f87b53647a7718f8807c3c760954b8afd9c8b67a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 18:00:52 +0900
Subject: [PATCH 10/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index 50d75e7..169b739 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -34,11 +34,11 @@ jobs:
# 5. S3에 미리보기 배포
- name: Deploy to S3
run: |
- aws s3 sync ./dist s3://your-preview-bucket/pr-${{ github.event.number }} --delete
+ aws s3 sync ./dist s3://davinci-preview-bucket/pr-${{ github.event.number }} --delete
# 6. PR에 미리보기 URL 등록
- name: Add Preview URL to PR
uses: thollander/actions-comment-pull-request@v1
with:
- message: "Preview available at: https://your-preview-bucket.s3.amazonaws.com/pr-${{ github.event.number }}/"
+ message: "Preview available at: https://davinci-preview-bucket.s3.amazonaws.com/pr-${{ github.event.number }}/"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
From c59201d70d36d56cf5a84674e6bcaedb9677a1e1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 18:13:23 +0900
Subject: [PATCH 11/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index 169b739..32ff18b 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -36,9 +36,13 @@ jobs:
run: |
aws s3 sync ./dist s3://davinci-preview-bucket/pr-${{ github.event.number }} --delete
- # 6. PR에 미리보기 URL 등록
- - name: Add Preview URL to PR
- uses: thollander/actions-comment-pull-request@v1
- with:
- message: "Preview available at: https://davinci-preview-bucket.s3.amazonaws.com/pr-${{ github.event.number }}/"
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ # 2. PR에 코멘트 추가
+ - name: Add comment to PR
+ run: |
+ curl -H "Authorization: token ${{ secrets.MY_PAT }}" \
+ -H "Content-Type: application/json" \
+ -d '{"body": "Preview available at: https://example.com"}' \
+ "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"
From eb54cd6092fa2d974f6856627007802307fdc7b3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 18:16:25 +0900
Subject: [PATCH 12/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index 32ff18b..f440900 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -42,7 +42,8 @@ jobs:
# 2. PR에 코멘트 추가
- name: Add comment to PR
run: |
+ PREVIEW_URL="https://davinci-preview-bucket.s3.ap-northeast-2.amazonaws.com/pr-${{ github.event.number }}/"
curl -H "Authorization: token ${{ secrets.MY_PAT }}" \
- -H "Content-Type: application/json" \
- -d '{"body": "Preview available at: https://example.com"}' \
- "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"
+ -H "Content-Type: application/json" \
+ -d "{\"body\": \"Preview available at: $PREVIEW_URL\"}" \
+ "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"
From ee512a83fb4c974db4711350c058197887e756f7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 18:18:41 +0900
Subject: [PATCH 13/15] =?UTF-8?q?test:=20dev=20preview=20s3=20=EB=B0=B0?=
=?UTF-8?q?=ED=8F=AC=20=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/preview-deploy.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml
index f440900..c4530c4 100644
--- a/.github/workflows/preview-deploy.yml
+++ b/.github/workflows/preview-deploy.yml
@@ -34,7 +34,7 @@ jobs:
# 5. S3에 미리보기 배포
- name: Deploy to S3
run: |
- aws s3 sync ./dist s3://davinci-preview-bucket/pr-${{ github.event.number }} --delete
+ aws s3 sync ./dist s3://your-preview-bucket/pr-${{ github.event.number }} --acl public-read --delete
- name: Checkout code
uses: actions/checkout@v2
From 17ccad5b1daec997c360c6302e82689165242888 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 18:25:26 +0900
Subject: [PATCH 14/15] =?UTF-8?q?test:=20Amplify=20preview=20=ED=85=8C?=
=?UTF-8?q?=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/delete-preview.yml => .tmp/delete-preview.text | 0
.github/workflows/preview-deploy.yml => .tmp/preview-deploy.text | 0
tmpdeploy.text => .tmp/tmpdeploy.text | 0
3 files changed, 0 insertions(+), 0 deletions(-)
rename .github/workflows/delete-preview.yml => .tmp/delete-preview.text (100%)
rename .github/workflows/preview-deploy.yml => .tmp/preview-deploy.text (100%)
rename tmpdeploy.text => .tmp/tmpdeploy.text (100%)
diff --git a/.github/workflows/delete-preview.yml b/.tmp/delete-preview.text
similarity index 100%
rename from .github/workflows/delete-preview.yml
rename to .tmp/delete-preview.text
diff --git a/.github/workflows/preview-deploy.yml b/.tmp/preview-deploy.text
similarity index 100%
rename from .github/workflows/preview-deploy.yml
rename to .tmp/preview-deploy.text
diff --git a/tmpdeploy.text b/.tmp/tmpdeploy.text
similarity index 100%
rename from tmpdeploy.text
rename to .tmp/tmpdeploy.text
From e2bc8fd21fb89accfbf7eef31cfc43da93341d53 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Fri, 20 Dec 2024 18:41:52 +0900
Subject: [PATCH 15/15] =?UTF-8?q?test:=20Amplify=20preview=20=ED=85=8C?=
=?UTF-8?q?=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.tsx | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/App.tsx b/src/App.tsx
index e9f490b..dbac9a1 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -9,7 +9,6 @@ function App() {
-
>
);