How to set up a proxy

 steps:
   - name: clone
     image: alpine/git
     commands:
       - git config --global http.version HTTP/1.1
       - git clone https://github.com/xxxx.git .
 

How can i set proxy

export http_proxy=socks5://127.0.0.1:9999;

This way not working.

Hey @Aderlx welcome to the harness community :tada:

You will find these links:

  1. proxy support · Issue #39 · drone-plugins/drone-slack · GitHub
  2. Local Development | Drone

Thanks!