Skip to content

Commit

Permalink
feat: CI false env set and fix login route
Browse files Browse the repository at this point in the history
  • Loading branch information
hwmin414 authored and xMHW committed Jan 18, 2024
1 parent e348970 commit db711cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prod-build-deploy-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: yarn

- name: Build
run: yarn build
run: CI=false yarn build

- name: Deploy
env:
Expand Down
2 changes: 1 addition & 1 deletion src/components/templates/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const AuthButton: React.FC<AuthButtonProps> = ({ type, groupName, transparent })
) : (
<div>
<SVG icon="user" />
<a className="upload" href="/api/auth/login">
<a className="upload" href={`${process.env.REACT_APP_API_HOST || ""}/api/auth/login`}>
로그인
</a>
</div>
Expand Down

0 comments on commit db711cf

Please sign in to comment.