We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 303ecba + 4959c82 commit 3023d52Copy full SHA for 3023d52
2 files changed
.github/workflows/main-deploy-v1.yml
@@ -26,6 +26,7 @@ jobs:
26
NEXT_PUBLIC_KAKAO_APP_KEY=${{ secrets.NEXT_PUBLIC_KAKAO_APP_KEY }}
27
NEXT_PUBLIC_PAY200_KEY=${{ secrets.NEXT_PUBLIC_PAY200_KEY }}
28
NEXT_PUBLIC_TOSS_PAY_KEY=${{ secrets.NEXT_PUBLIC_TOSS_PAY_KEY }}
29
+ NEXT_PUBLIC_KAKAO_API_KEY=${{ secrets.NEXT_PUBLIC_KAKAO_API_KEY }}
30
31
- name: Configure AWS credentials
32
uses: aws-actions/configure-aws-credentials@v1
src/components/CommonLayout.tsx
@@ -102,6 +102,8 @@ const CommonLayout = ({ children }: CommonLayoutProps) => {
102
longitude: position.coords.longitude,
103
}
104
105
+ console.log(process.env.NEXT_PUBLIC_KAKAO_API_KEY)
106
+
107
if (!addressStoreAddress || !member) {
108
getGeolocationToAddress(
109
{
0 commit comments