Skip to content

Commit

Permalink
feat: VITE_RUSH_URL 환경변수 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
sooyeoniya authored Aug 19, 2024
1 parent b38e8f8 commit 0ad1c4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/client_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:


- name: Create .env file
run: echo "VITE_API_URL=${{ secrets.VITE_API_URL }}" > ./.env
run: |
echo "VITE_API_URL=${{ secrets.VITE_API_URL }}" >> ./.env
echo "VITE_RUSH_URL=${{ secrets.VITE_RUSH_URL }}" >> ./.env
working-directory: ${{ env.working-directory }}

# build
Expand Down

0 comments on commit 0ad1c4c

Please sign in to comment.