Skip to content

Commit

Permalink
ci: CI 환경에서도 env 파일 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
ImxYJL committed Jul 24, 2024
1 parent fd251b0 commit 82f513c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
cache: "yarn"
cache-dependency-path: ./frontend/yarn.lock

- name: Create .env file
run: echo "API_BASE_URL=${{ secrets.API_BASE_URL }}" > ./frontend/.env

- name: Set environment file permissions
run: chmod 644 ./frontend/.env

- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: frontend
Expand Down

0 comments on commit 82f513c

Please sign in to comment.