You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For my understanding, trigger drone-downstream is to run a similar drone build start command via api.
Which I need:
Extra feature to trigger with several --param key=value. These key/values can be generated from preview steps in same .drone.yml
Support drone deploy as well (Ability to trigger a deployment #25), because both drone build and drone deploy supports --param key=value and I do need to trigger downsteam with drone deploy directly.
My questions are, why not use a drone-cli container to do the job directly via shell scripting, more than write a seperate Go plugin as this repo? It will support any new future features automatically from new version of drone cli drone build/deploy
So:
Can Drone team lead to build drone-cli as official image when new version released? It will be better to make the old versions available as well.
Rewrite this plugin (or create a new one) to accept key/value and support deploy as well
For my understanding, trigger
drone-downstreamis to run a similardrone build startcommand via api.Which I need:
--param key=value. Thesekey/valuescan be generated from preview steps in same.drone.ymldrone deployas well (Ability to trigger a deployment #25), because bothdrone buildanddrone deploysupports--param key=valueand I do need to trigger downsteam withdrone deploydirectly.My questions are, why not use a drone-cli container to do the job directly via shell scripting, more than write a seperate Go plugin as this repo? It will support any new future features automatically from new version of drone cli
drone build/deploySo:
Can Drone team lead to build
drone-clias official image when new version released? It will be better to make the old versions available as well.Rewrite this plugin (or create a new one) to accept key/value and support
deployas wellNew plugin usage will be similar as below:
I am happy to work on this, but the thing to stop me is, how to transfer variables from preview step to this plugin (varialbe1 and varialbe2)?