jordigilh commented on code in PR #354:
URL:
https://github.com/apache/incubator-kie-kogito-serverless-operator/pull/354#discussion_r1453626961
##########
.github/workflows/e2e.yml:
##########
@@ -115,3 +82,16 @@ jobs:
- name: Run tests
run: |
make test-e2e
+
+ - name: Export kind logs
+ if: always()
+ run: |
+ mkdir -p /tmp/kind/logs
+ kind export logs --loglevel=debug /tmp/kind/logs
+
+ - name: Upload kind logs
+ if: always()
+ uses: actions/upload-artifact@v3
+ with:
+ name: kind-logs-${{ env.JOB_NAME }}-${{ github.run_id }}
+ path: /tmp/kind/logs
Review Comment:
Path is the source directory. Copied from the
[doc](https://github.com/actions/upload-artifact#inputs):
```
# A file, directory or wildcard pattern that describes what to upload
# Required.
path:
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]