Skip to content

Commit 6cb9042

Browse files
authored
Merge pull request CreateThrive#15 from CreateThrive/fix/ci-failing
Missing CI env variable in build action
2 parents d3c1215 + a294c17 commit 6cb9042

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.github/workflows/production-deployment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
REACT_APP_FIRE_BASE_MEASURMENT_ID: ${{ secrets.FIRE_BASE_MEASURMENT_ID_STAGING }}
3434
REACT_APP_CLOUD_FUNCTIONS_REST_API: ${{ secrets.CLOUD_FUNCTIONS_REST_API_STAGING }}
3535
REACT_APP_LOGIN_PAGE_URL: ${{ secrets.LOGIN_PAGE_URL_STAGING }}
36+
CI: ''
3637
- name: Firebase deployment
3738
run: |
3839
npm install -g firebase-tools

.github/workflows/pull-requests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
run: npm ci
2626
- name: Building project
2727
run: npm run build
28+
env:
29+
CI: ''
2830
tests:
2931
name: Testing
3032

.github/workflows/staging-deployment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
REACT_APP_FIRE_BASE_MEASURMENT_ID: ${{ secrets.FIRE_BASE_MEASURMENT_ID_STAGING }}
3434
REACT_APP_CLOUD_FUNCTIONS_REST_API: ${{ secrets.CLOUD_FUNCTIONS_REST_API_STAGING }}
3535
REACT_APP_LOGIN_PAGE_URL: ${{ secrets.LOGIN_PAGE_URL_STAGING }}
36+
CI: ''
3637
- name: Firebase deployment
3738
run: |
3839
npm install -g firebase-tools

0 commit comments

Comments
 (0)