@@ -173,7 +173,8 @@ jobs:
173173 runs-on : ubuntu-latest
174174 needs : [integration-tests]
175175 if : always() # && github.repository == 'linode/linode_api4-python' # Run even if integration tests fail and only on main repository
176- output : ${{ steps.set-test-summary.outputs.summary }}
176+ outputs :
177+ summary : ${{ steps.set-test-summary.outputs.summary }}
177178
178179 steps :
179180 - name : Checkout code
@@ -226,8 +227,8 @@ jobs:
226227 if : ${{ (success() || failure()) }} # Run even if integration tests fail and only on main repository
227228 steps :
228229 - env :
229- TEST_SUMMARY : ${{ needs.process-upload-report.outputs.summary}}
230- run : echo "$TEST_SUMMARY "
230+ SUMMARY : ${{ needs.process-upload-report.outputs.summary }}
231+ run : echo "$SUMMARY "
231232
232233 - name : Notify Slack
233234 id : main_message
@@ -265,7 +266,7 @@ jobs:
265266 run : |
266267 echo "TEST_SUMMARY output from previous job:"
267268 echo "--------------------------------------"
268- echo "${{ needs.process-upload-report.outputs.test_summary }}"
269+ echo "${{ needs.process-upload-report.outputs.summary }}"
269270 echo "--------------------------------------"
270271
271272 - name : Test summary thread
@@ -277,4 +278,4 @@ jobs:
277278 payload : |
278279 channel: ${{ secrets.SLACK_CHANNEL_ID }}
279280 thread_ts: "${{ steps.main_message.outputs.ts }}"
280- text: "${{ $TEST_SUMMARY }}"
281+ text: "${{ needs.process-upload-report.outputs.summary }}"
0 commit comments