We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00786f1 commit 840204bCopy full SHA for 840204b
.github/workflows/postman.yml
@@ -73,11 +73,13 @@ jobs:
73
- name: Run API tests
74
run: |
75
postman collection run "44183872-d3b3cdc9-ba1f-4a71-bcba-6a3cb3dc9643" -e "43715313-d380e919-5142-44e6-b52c-02f8b04da8fa"
76
- - name: Upload logs
+ - name: Show logs
77
if: always()
78
- uses: actions/upload-artifact@v4
79
- with:
80
- name: server-logs
81
- path: |
82
- $GITHUB_WORKSPACE/core.log
83
- $GITHUB_WORKSPACE/api.log
+ run: |
+ echo "::group::Core Server Logs"
+ cat $GITHUB_WORKSPACE/core.log || echo "No core log found"
+ echo "::endgroup::"
+
+ echo "::group::API Logs"
84
+ cat $GITHUB_WORKSPACE/api.log || echo "No api log found"
85
0 commit comments