Displaying the IP address of a gitlab runner in a Gitlab job

To be able to see the job runner IP address in a gitlab job, you can add a script (or add it to an existing one) that uses hostname -I

script:
  - hostname -I && your_other_script