File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -314,9 +314,6 @@ jobs:
314
314
runs-on : ubuntu-latest
315
315
outputs :
316
316
image_tag : ${{ steps.build.outputs.image_tag }}
317
- comment_id : ${{ needs.process-deployment.outputs.comment_id }}
318
- pr_number : ${{ needs.process-deployment.outputs.pr_number }}
319
- do_deploy : ${{ needs.process-deployment.outputs.do_deploy }}
320
317
steps :
321
318
- name : Checkout code
322
319
uses : actions/checkout@v4
@@ -388,7 +385,7 @@ jobs:
388
385
await github.rest.issues.updateComment({
389
386
owner: context.repo.owner,
390
387
repo: context.repo.repo,
391
- comment_id: '${{ steps.create-comment .outputs.comment-id }}',
388
+ comment_id: '${{ needs.process-deployment .outputs.comment_id }}',
392
389
body: deployingMessage
393
390
});
394
391
@@ -419,7 +416,7 @@ jobs:
419
416
const deploymentStatus = {
420
417
owner: context.repo.owner,
421
418
repo: context.repo.repo,
422
- deployment_id: ${{ steps.init -deployment.outputs.result }},
419
+ deployment_id: ${{ needs.process -deployment.outputs.deployment_id }},
423
420
state: isSuccess ? 'success' : 'failure',
424
421
environment_url: isSuccess ? appUrl : undefined,
425
422
log_url: workflowUrl,
You can’t perform that action at this time.
0 commit comments