I am trying to use the deployment-url provided by the wrangler/action in a multi-stage Github action workflow.
By using the steps mentioned in the Github actions docs: Defining and using job outputs
For example:
jobs:
job1:
runs-on: ubuntu-latest
outputs:
output1: ${{ steps.step1.outputs.test }}
output2: ${{ steps.step2.outputs.test }}
steps:
- id: step1
run: echo "test=hello" >> "$GITHUB_OUTPUT"
- id: step2
run: echo "test=world" >> "$GITHUB_OUTPUT"
# Assume job1 is defined as above
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- env:
OUTPUT1: ${{needs.job1.outputs.output1}}
OUTPUT2: ${{needs.job1.outputs.output2}}
run: echo "$OUTPUT1 $OUTPUT2"
When consuming/using the output value inside job2, the value logs as an empty string.
I am trying to use the
deployment-urlprovided by thewrangler/actionin a multi-stage Github action workflow.By using the steps mentioned in the Github actions docs: Defining and using job outputs
For example:
When consuming/using the output value inside
job2, the value logs as an empty string.