We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f4ef1e commit 99a6c33Copy full SHA for 99a6c33
.github/workflows/deploy-to-control-plane-review-app.yml
@@ -356,13 +356,14 @@ jobs:
356
- name: Retrieve App URL
357
id: workload
358
run: echo "WORKLOAD_URL=$(cpln workload get rails --gvc ${{ env.APP_NAME }} | tee | grep -oP 'https://[^[:space:]]*\.cpln\.app(?=\s|$)' | head -n1)" >> "$GITHUB_OUTPUT"
359
+
360
- name: Update Status - Deployment Complete
361
if: env.DO_DEPLOY != 'false'
362
uses: actions/github-script@v7
363
with:
364
script: |
365
const prNumber = process.env.PR_NUMBER;
- const appUrl = ${{ steps.workload.outputs.WORKLOAD_URL }};
366
+ const appUrl = '${{ steps.workload.outputs.WORKLOAD_URL }}';
367
const workflowUrl = process.env.WORKFLOW_URL;
368
const isSuccess = '${{ job.status }}' === 'success';
369
0 commit comments