Skip to content

Commit 788b1fe

Browse files
author
David Cavazos
committed
add quotes to string
1 parent 0672b9e commit 788b1fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
script: |
8888
const { default: setupVars } = await import('${{ github.workspace }}/.github/scripts/setup-vars.js')
89-
const project_id = ${{ env.PROJECT_ID }}
89+
const project_id = '${{ env.PROJECT_ID }}';
9090
const setup = JSON.parse(process.env.CI_SETUP);
9191
return await setupVars({project_id, core, setup})
9292
- uses: google-github-actions/get-secretmanager-secrets@e5bb06c2ca53b244f978d33348d18317a7f263ce # v2

.github/workflows/ci-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
with:
9999
script: |
100100
const setupVars = require('.github/scripts/setup-vars.js');
101-
const project_id = ${{ env.PROJECT_ID }}
101+
const project_id = '${{ env.PROJECT_ID }}';
102102
const setup = JSON.parse(process.env.CI_SETUP);
103103
return setupVars({project_id, core, setup});
104104
- uses: google-github-actions/get-secretmanager-secrets@e5bb06c2ca53b244f978d33348d18317a7f263ce # v2

0 commit comments

Comments
 (0)