Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Config: #285 소셜 로그인 리다이렉트 URL 설정 & checkout 브랜치 명시 #286

Merged
merged 1 commit into from
Dec 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: deploy-workflow

on:
push:
branches:
- main
branches: [main]
workflow_dispatch:

jobs:
Expand All @@ -13,6 +12,8 @@ jobs:
# Github workspace 로컬 다운로드
- name: Checkout branch
uses: actions/checkout@v4
with:
ref: main

# NodeJS 설치
- name: Setup Node.js environment v20
Expand All @@ -29,6 +30,8 @@ jobs:
run: |
echo "VITE_BASE_URL=${{ secrets.VITE_BASE_URL }}" >> .env
echo "VITE_API_URL=${{ secrets.VITE_API_URL }}" >> .env
echo "VITE_KAKAO_REDIRECT_URI=${{ secrets.VITE_KAKAO_REDIRECT_URI }}" >> .env
echo "VITE_GOOGLE_REDIRECT_URI=${{ secrets.VITE_GOOGLE_REDIRECT_URI }}" >> .env
shell: bash

# 프로젝트 빌드
Expand Down