Skip to content

Commit

Permalink
ci: 최종
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte committed Nov 16, 2024
1 parent 190b72e commit a11b5f5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: 🧩 Set up Node.js 20.12.2
uses: actions/setup-node@v2
with:
node-version: '20.12.2'
node-version: "20.12.2"

# 3. 의존성 설치 및 빌드
- name: 🛠️ Install Dependencies and Build Project
Expand All @@ -39,7 +39,6 @@ jobs:
run: |
mkdir -p ~/.ssh
ssh-keyscan -H ${{ secrets.SERVER_IP }} >> ~/.ssh/known_hosts
cat ~/.ssh/known_hosts
# 6. 원격 서버에 디렉토리 생성
- name: 📂 Create Directory on Server
Expand Down
Binary file removed dist.zip
Binary file not shown.
Binary file removed src.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Main/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ const LoginForm = () => {
setTokens(data);

toast({
title: "로그인 성공",
title: "로그인 성공띠",
description: "토큰이 발급되었습니다",
status: "success",
duration: 3000,
isClosable: true,
});
} catch (error) {
toast({
title: "로그인 실패",
title: "로그인 실패띠",
description:
error instanceof Error
? error.message
Expand Down

0 comments on commit a11b5f5

Please sign in to comment.