Skip to content

Commit

Permalink
Merge branch 'refs/heads/feature/kakao-redirect-uri' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
junseublim committed Aug 19, 2024
2 parents c332dfd + ec91db1 commit 783d64a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo "AUTH_KAKAO_ID=${{secrets.AUTH_KAKAO_ID}}" >> .env
echo "AUTH_KAKAO_SECRET=${{secrets.AUTH_KAKAO_SECRET}}" >> .env
echo "AUTH_SECRET=${{secrets.AUTH_SECRET}}" >> .env
echo "AUTH_REDIRECT_URI=${{secrets.AUTH_REDIRECT_URI}}" >> .env
echo "NEXTAUTH_URL=${{vars.NEXTAUTH_URL}}" >> .env
- name: Build docker image
run: docker build -t ${{ vars.DOCKER_IMAGE }} .
- name: Login to DockerHub
Expand Down
1 change: 0 additions & 1 deletion src/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export const { handlers, signIn, signOut, auth, unstable_update } = NextAuth({
Kakao({
clientId: process.env.AUTH_KAKAO_ID,
clientSecret: process.env.AUTH_KAKAO_SECRET,
redirectProxyUrl: `${process.env.AUTH_REDIRECT_URI}/api/auth`,
}),
],

Expand Down

0 comments on commit 783d64a

Please sign in to comment.