Hi,
I have a drone server running on my VPS, and a runner (my PC).
I’ve created a git repo with a .drone.yml file.
kind: pipeline
name: default
type: dockersteps:
- name: greeting
image: alpine
commands:
- echo hello
I’ve also activated the repo from “cloud.drone.io”
Now, when I push to the repo, I can see in “cloud.drone.io” that the echo command actually happens,
But even if stop my drone server (docker stop), the push event triggers the action.
So I’m not sure where this is happening (if my server is down),
and how can I run these commands on my runner (through server).
Another question,
There is a way to save the yml file in another location (I would like to keep my github repo clean).
Thanks!