I wonder what I am missing here. I just trying to execute a curl command using github actions and the issue is that is not showing the output at all.
the command is executed like:
- name: query
shell: bash
run: curl :8088/ksql -H'Accept:application/vnd.ksql.v1+json' -k -S -u ${{ secrets.KSQL_TEST_ID }} --data @./query.json
but again is not any output. Before I was getting timeouts but security opened up the ports so now I can connect to the ports. If I execute the same curl command on my PC I get the expected results.
anyway idea what I am missing from the github actions sides. thanks.