icy-doctor-13719
01/20/2023, 5:20 AM- uses: pulumi/actions@v4
id: pulumi
env:
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
with:
stack-name: ${{ env.stack }}
command: preview
refresh: true
expect-no-changes: true
diff: true
When I attempt to access the stack output as below, it comes back blank:
${{ steps.pulumi.outputs.output }}
Any suggestions on the correct way to access the output? I essentially want the same output that would be there if comment-on-pr
were set to true
. Since my action is running on cron rather than pr, I’m unable to use that command. Many thanks! 🙏steps.pulumi.outputs.diff
but no lucklemon-agent-27707
01/20/2023, 4:12 PMicy-doctor-13719
01/20/2023, 11:08 PMlemon-agent-27707
01/21/2023, 3:42 PMoutput
field come back blank, I'm not sure. You could try joining all of the output from the step and dumping it to debug.icy-doctor-13719
01/21/2023, 3:43 PM