Skip to content

Commit d7eb2d7

Browse files
committed
feat: create environment file using individual variables
1 parent 1496bff commit d7eb2d7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/eas-build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,12 @@ jobs:
7474
# we need to create a local .env file with the content of the environment file
7575
- name: Create environment file
7676
env:
77-
ENVIRONMENT_FILE: ${{ secrets.ENVIRONMENT_FILE }}
77+
API_URL: ${{ secrets.API_URL }}
78+
VAR_NUMBER: ${{secrets.VAR_NUMBER }}
79+
VAR_BOOL: ${{secrets.VAR_BOOL }}
80+
SECRET_KEY: ${{secrets.SECRET_KEY }}
81+
WEBSITE_URL: ${{secrets.WEBSITE_URL }}
82+
TERMS_OF_SERVICE_URL: ${{secrets.TERMS_OF_SERVICE_URL }}
7883
run: echo "$ENVIRONMENT_FILE" > .env
7984

8085
- name: ⚙️ Run Prebuild

0 commit comments

Comments
 (0)