Skip to content

Commit

Permalink
Merge pull request #191 from sparcs-kaist/feature/build-deploy-s3
Browse files Browse the repository at this point in the history
feat: CI false env set and fix login route
  • Loading branch information
withSang authored Jan 18, 2024
2 parents e348970 + db711cf commit 522e963
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 522e963

Please sign in to comment.