Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/leafy-backend-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
# Dockerfile의 경로입니다.
push: true # 이미지를 레지스트리에 푸시합니다.
tags: ${{ secrets.DOCKERHUB_USERNAME }}/leafy-backend:${{ github.sha }}

platforms: linux/amd64, linux/arm64
2 changes: 1 addition & 1 deletion .github/workflows/leafy-frontend-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
push: true
# 이미지를 레지스트리에 푸시합니다.
tags: ${{ secrets.DOCKERHUB_USERNAME }}/leafy-frontend:${{ github.sha }}

platforms: linux/amd64, linux/arm64
2 changes: 1 addition & 1 deletion .github/workflows/leafy-postgres-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
push: true
# 이미지를 레지스트리에 푸시합니다.
tags: ${{ secrets.DOCKERHUB_USERNAME }}/leafy-postgres:${{ github.sha }}

platforms: linux/amd64, linux/arm64
2 changes: 1 addition & 1 deletion leafy-frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div id="app">
<div class="welcome-message" v-if="isLoggedIn">
<p class="welcome-text">안녕하세요, <span class="user-name">{{ user.name }}</span>님!</p>
<p class="description">오늘도 즐거운 식물 관리하세요.</p>
<p class="description">어제는 즐겁게 식물 관리하셨나요?</p>
</div>
<div class="brand" v-if="isLoggedIn">
LEAFY
Expand Down