Skip to content

Commit

Permalink
debug: more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kneth committed Oct 31, 2023
1 parent f1312ad commit f0a9f32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-realm-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ jobs:
echo "url=https://${subdomain}.ngrok.io" >> $GITHUB_OUTPUT;

- name: Trigger the test server workflow to start the server
run: gh workflow run test-server.yml -f ngrok_subdomain=${{ steps.baas-config.outputs.subdomain }} -f run_id=${{ github.run_id }} -f server_tag=${{ env.BAAS_TAG }}
run: gh workflow run test-server.yml -f ngrok_subdomain=${{ steps.baas-config.outputs.subdomain }} -f run_id=${{ github.run_id }} -f server_tag=${{ env.BAAS_TAG }} -r ${{ github.ref_name }}
env:
GH_TOKEN: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
echo "subdomain=${subdomain}" >> $GITHUB_OUTPUT;
echo "hostname=${subdomain}.ngrok.io" >> $GITHUB_OUTPUT;
- name: Start Ngrok
run: docker run --detach --network host --env NGROK_AUTHTOKEN ngrok/ngrok http --subdomain ${{ steps.ngrok-config.outputs.subdomain }} 9090
run: docker run --detach --network host --env NGROK_AUTHTOKEN ngrok/ngrok http --log-level debug --log stderr --subdomain ${{ steps.ngrok-config.outputs.subdomain }} 9090
env:
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}
- name: Preparing server entrypoint
Expand Down

0 comments on commit f0a9f32

Please sign in to comment.