From 92e77b5e25c850bd15c2d62143bbba25d75bf424 Mon Sep 17 00:00:00 2001 From: DaheeJang Date: Sat, 19 Jul 2025 23:40:55 +0900 Subject: [PATCH 1/4] =?UTF-8?q?Feat:=20eas-build.yml=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/eas-build.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index c8671c9..3dbb484 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -21,14 +21,11 @@ jobs: - name: Install EAS CLI run: npm install -g eas-cli - # - name: Authenticate with EAS - # env: - # EAS_BUILD_TOKEN: ${{ secrets.EXPO_TOKEN }} + - name: Authenticate with EAS + run: eas login --token ${{ secrets.EXPO_TOKEN }} - name: Install dependencies run: npm install - name: Build Android app with EAS run: eas build --platform android --profile apk --non-interactive - env: - EAS_BUILD_TOKEN: ${{ secrets.EXPO_TOKEN }} From 24453a1c98c29dd7319078c8251b8244dac64f6c Mon Sep 17 00:00:00 2001 From: DaheeJang Date: Sat, 19 Jul 2025 23:42:43 +0900 Subject: [PATCH 2/4] =?UTF-8?q?Feat:=20eas-build.yml=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/eas-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index 3dbb484..9da8f38 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -22,7 +22,9 @@ jobs: run: npm install -g eas-cli - name: Authenticate with EAS - run: eas login --token ${{ secrets.EXPO_TOKEN }} + run: eas login + env: + EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }} - name: Install dependencies run: npm install From d9b24a02e914b978b8c859f5e3201987f5d63b24 Mon Sep 17 00:00:00 2001 From: DaheeJang Date: Sun, 20 Jul 2025 00:04:45 +0900 Subject: [PATCH 3/4] =?UTF-8?q?Feat:=20eas-build.yml=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/eas-build.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index 9da8f38..d689241 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -21,13 +21,10 @@ jobs: - name: Install EAS CLI run: npm install -g eas-cli - - name: Authenticate with EAS - run: eas login - env: - EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }} - - name: Install dependencies run: npm install - name: Build Android app with EAS run: eas build --platform android --profile apk --non-interactive + env: + EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }} From 3897099e0872724ce665e058b68eeaaa4dc33c08 Mon Sep 17 00:00:00 2001 From: DaheeJang Date: Sun, 20 Jul 2025 00:18:19 +0900 Subject: [PATCH 4/4] =?UTF-8?q?Fix:=20home=20=ED=8F=B4=EB=8D=94=20?= =?UTF-8?q?=EC=9D=B4=EB=A6=84=20=EB=B0=8F=20=EA=B2=BD=EB=A1=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/home/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(tabs)/home/index.tsx b/app/(tabs)/home/index.tsx index 658442a..563bf74 100644 --- a/app/(tabs)/home/index.tsx +++ b/app/(tabs)/home/index.tsx @@ -7,8 +7,8 @@ import { StyleSheet, Text, TouchableOpacity, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; import Svg, { Line } from "react-native-svg"; import { typography } from "../../../styles/typography"; -import HomeAll from "../../Home/home_all"; -import HomeMain from "../../Home/home_theme"; +import HomeAll from "../../home/home_all"; +import HomeMain from "../../home/home_theme"; export default function HomeScreen() { const [selectedTab, setSelectedTab] = useState<"theme" | "all">("theme");