Skip to content

Commit

Permalink
feat: add step to create .env file with backend URL in GitHub Actions…
Browse files Browse the repository at this point in the history
… workflow
  • Loading branch information
bhaskaraa45 committed Mar 4, 2025
1 parent 6d70dc6 commit de1a3c6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
flutter-version: '3.27.3'
cache: true

- name: Create .env File
run: |
echo "BACKEND_URL=${{ secrets.BACKEND_URL || 'https://api.iith.dev' }}" >> frontend/.env
shell: bash

- name: Install Dependencies
run: |
cd frontend
Expand Down

0 comments on commit de1a3c6

Please sign in to comment.