Skip to content

Commit 53234d6

Browse files
committed
fix: Remove extra quotes
1 parent 56b09d4 commit 53234d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
with:
2828
github-token: ${{ steps.generate-token.outputs.token }}
2929
script: |
30-
const environment = `"${{ inputs.environment }}"`;
31-
const project = `"${{ inputs.project }}"`;
30+
const environment = "${{ inputs.environment }}";
31+
const project = "${{ inputs.project }}";
3232
const workflowId = `deploy-${environment}.yml`;
3333
3434
try {

0 commit comments

Comments
 (0)