Skip to content

Commit b136713

Browse files
committed
Fix GH action
1 parent b3fbf82 commit b136713

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/admin-update-snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Initialize repository
3838
uses: ./.github/workflows/actions/init
3939
with:
40-
installDependencies: false
40+
installDependencies: "false"
4141

4242
# Get the SHA and branch name of the comment's pull request
4343
# We must use the GitHub API to retrieve these information because they're

.github/workflows/deployment.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ jobs:
7575
uses: ./.github/workflows/actions/init
7676
with:
7777
project: ${{ inputs.project }}
78+
installFirebaseTools: "true"
7879
firebaseServiceAccountJSON: ${{ (inputs.project == 'social-income-prod' && secrets.FIREBASE_SERVICE_ACCOUNT_SOCIAL_INCOME_PROD) || secrets.FIREBASE_SERVICE_ACCOUNT_SOCIAL_INCOME_STAGING }}
7980

8081
- name: Add secrets to functions/.env file
@@ -110,8 +111,8 @@ jobs:
110111
- name: Initialize repository
111112
uses: ./.github/workflows/actions/init
112113
with:
113-
installDependencies: false
114-
installFirebaseTools: true
114+
installDependencies: "false"
115+
installFirebaseTools: "true"
115116
project: ${{ inputs.project }}
116117
firebaseServiceAccountJSON: ${{ (inputs.project == 'social-income-prod' && secrets.FIREBASE_SERVICE_ACCOUNT_SOCIAL_INCOME_PROD) || secrets.FIREBASE_SERVICE_ACCOUNT_SOCIAL_INCOME_STAGING }}
117118

.github/workflows/execute-draw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Initialize repository
2121
uses: ./.github/workflows/actions/init
2222
with:
23-
installDependencies: false
23+
installDependencies: "false"
2424

2525
- name: Install dchoose
2626
run: npm install -g dchoose

.github/workflows/functions-update-snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Initialize repository
3838
uses: ./.github/workflows/actions/init
3939
with:
40-
installDependencies: false
40+
installDependencies: "false"
4141

4242
# Get the SHA and branch name of the comment's pull request
4343
# We must use the GitHub API to retrieve these information because they're

.github/workflows/website-update-snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Initialize repository
3838
uses: ./.github/workflows/actions/init
3939
with:
40-
installDependencies: false
40+
installDependencies: "false"
4141

4242
# Get the SHA and branch name of the comment's pull request
4343
# We must use the GitHub API to retrieve these information because they're

0 commit comments

Comments
 (0)