Skip to content

Commit c2bdf26

Browse files
Fix GitHub Actions syntax error in CI/CD pipeline workflow
Co-authored-by: rezwana-karim <126201034+rezwana-karim@users.noreply.github.com>
1 parent 31dab5f commit c2bdf26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-cd-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
with:
191191
github-token: ${{ secrets.GITHUB_TOKEN }}
192192
script: |
193-
const environment = '${{ github.event.inputs.deploy_environment || "development" }}';
193+
const environment = '${{ github.event.inputs.deploy_environment }}' || 'development';
194194
const isProduction = environment === 'production';
195195
196196
console.log(`🚀 Deployment readiness check for: ${environment}`);

0 commit comments

Comments
 (0)